diff options
author | seb <seb> | 2003-08-07 15:33:28 +0000 |
---|---|---|
committer | seb <seb> | 2003-08-07 15:33:28 +0000 |
commit | c4626f0a30688f2bddfff8c4c2ff7557380fb0f1 (patch) | |
tree | b331f32d466a0cd6e51f5b587eb33a4ce1b8815d | |
parent | 4ff6abdbe31e347768cb4d80939e9e03e7e1e03d (diff) | |
download | pkgsrc-c4626f0a30688f2bddfff8c4c2ff7557380fb0f1.tar.gz |
The INSTALL script was overlooked during the conversion to
USE_NEW_TEXINFO. But...
It is not really useful now, so remove it.
-rw-r--r-- | lang/pgcc/INSTALL | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/lang/pgcc/INSTALL b/lang/pgcc/INSTALL deleted file mode 100644 index b17dfc6eefe..00000000000 --- a/lang/pgcc/INSTALL +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh -# -# Prior 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. - -if [ $# -ne 2 -o ! -d "${PKG_PREFIX}" -o ! -w "${PKG_PREFIX}/info/dir" ] -# Script was called improperly. -then - exit 1 -fi - -if [ "$2" != "PRE-INSTALL" ] -# No problem -then - exit 0 -fi - -if [ ! -x /bin/ed ] -# Who knows? Give up. -then - exit 0 -fi - -echo Fixing up infodir from previous installation\.\.\. -/bin/ed "${PKG_PREFIX}/info/dir" 2> /dev/null << END -/^* Chill/d -w -q -END -if [ $? -eq 0 ] -then - \.\.\.fixed\. - exit 0 -fi -echo \.\.\.nothing to fix\. -exit 0 |