13 lines
180 B
Bash
Executable File
13 lines
180 B
Bash
Executable File
#! /bin/sh -e
|
|
|
|
case "$1" in
|
|
configure)
|
|
docdir=/usr/share/doc/libgcc1
|
|
if [ -d $docdir ] && [ ! -h $docdir ]; then
|
|
rm -rf $docdir
|
|
ln -s gcc-8-base $docdir
|
|
fi
|
|
esac
|
|
|
|
|