mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
14 lines
547 B
Bash
14 lines
547 B
Bash
|
# Update the /usr/info/dir info-database, so that we will see the new
|
||
|
# "autoconf" item in info root structure, if we type "info".
|
||
|
if [ -x /usr/bin/install-info ] ; then
|
||
|
install-info --info-dir=/usr/info /usr/info/autoconf.info.gz 2>/dev/null
|
||
|
elif fgrep "Autoconf" usr/info/dir 1> /dev/null 2> /dev/null ; then
|
||
|
GOOD=yes # It seems to be entered in the /usr/info/dir already
|
||
|
else # add the info to the dir file directly:
|
||
|
cat << EOF >> usr/info/dir
|
||
|
|
||
|
Miscellaneous
|
||
|
* Autoconf: (autoconf). Create source code configuration scripts.
|
||
|
EOF
|
||
|
fi
|