summaryrefslogtreecommitdiff
path: root/emulators/osf1_lib/INSTALL
diff options
context:
space:
mode:
authortv <tv>2006-01-31 20:19:02 +0000
committertv <tv>2006-01-31 20:19:02 +0000
commit1bf85a33a7f0af352174332dac11865971217df5 (patch)
treeac38b597af8194f97ef08d4fd0ea67ec8fae54d6 /emulators/osf1_lib/INSTALL
parentfb412398b2a8cd982d1920218452cdaea52847a6 (diff)
downloadpkgsrc-tv_libtool_1_5_18_tmpdirfix.tar.gz
Backport a change from 1.5.22 to 1.5.18 that fixes some issues withtv_libtool_1_5_18_tmpdirfix
temp dir creation when using relink-based finalization.
Diffstat (limited to 'emulators/osf1_lib/INSTALL')
-rw-r--r--emulators/osf1_lib/INSTALL33
1 files changed, 0 insertions, 33 deletions
diff --git a/emulators/osf1_lib/INSTALL b/emulators/osf1_lib/INSTALL
deleted file mode 100644
index 52061de287b..00000000000
--- a/emulators/osf1_lib/INSTALL
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-# $NetBSD: INSTALL,v 1.1 2001/10/31 23:53:11 zuntum Exp $
-
-emul=osf1
-if [ "$2" != "POST-INSTALL" ]; then exit 0; fi
-
-cat <<EOF
-==============================================================================
-
-Do not forget to include COMPAT_OSF1 in your kernel configuration
-file. (OSF/1 binaries require this option in order to work.)
-EOF
-
-if [ "`cd /etc && cd ${PKG_PREFIX}/emul/$emul 2>/dev/null && pwd -P`" != \
- "`cd / && cd /emul/$emul 2>/dev/null && pwd -P`" ]; then
- if [ -e /emul/$emul -o -L /emul/$emul ] || \
- [ \( -e /emul -o -L /emul \) -a ! -d /emul ]; then
- cat <<-EOF
-
- IMPORTANT: You must create a symbolic link from /emul/$emul to
- ${PKG_PREFIX}/emul/$emul in order for this package to work properly.
- (It seems there is something else located at /emul/$emul.)
- EOF
- else
- mkdir -p /emul
- ln -sf ${PKG_PREFIX}/emul/$emul /emul/$emul
- fi
-fi
-
-cat <<EOF
-
-==============================================================================
-EOF