summaryrefslogtreecommitdiff
path: root/lang/gcc
diff options
context:
space:
mode:
authorseb <seb@pkgsrc.org>2003-07-06 14:28:35 +0000
committerseb <seb@pkgsrc.org>2003-07-06 14:28:35 +0000
commitaaa711549128c86bea60fe7ebf4861455a0667b5 (patch)
tree3ac6c68fae1db25beb670860dedc8874f8c824c3 /lang/gcc
parent03fb7511aa6874bc6c0750b821adc58ce2e74691 (diff)
downloadpkgsrc-aaa711549128c86bea60fe7ebf4861455a0667b5.tar.gz
Ooops I missed this INSTALL script while doing the conversion
to USE_NEW_TEXINFO (I should have added it to INSTALL_TEMPLATES). Anyway as info files are now registered in a package specific info directory file I guess it can be removed.
Diffstat (limited to 'lang/gcc')
-rw-r--r--lang/gcc/INSTALL26
1 files changed, 0 insertions, 26 deletions
diff --git a/lang/gcc/INSTALL b/lang/gcc/INSTALL
deleted file mode 100644
index 05e7382058b..00000000000
--- a/lang/gcc/INSTALL
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-#
-# Previous versions of the "gcc" package would install a corrupted
-# info entry for "chill", which would foil subsequent installations.
-# This script attempts to clean up that entry.
-
-case ${STAGE} in
-PRE-INSTALL)
- if [ ! -w "${PKG_PREFIX}/info/dir" ]; then
- exit 1
- fi
- if [ -x /bin/ed ]; then
- ${ECHO} "Fixing up info/dir from previous installation..."
- /bin/ed "${PKG_PREFIX}/info/dir" 2> /dev/null << END
-/^* Chill/d
-w
-q
-END
- if [ $? -eq 0 ]; then
- ${ECHO} "...fixed."
- else
- ${ECHO} "...nothing to fix."
- fi
- fi
- ;;
-esac