summaryrefslogtreecommitdiff
path: root/emulators/osf1_lib/INSTALL
blob: 52061de287b12f0f52bf9f1ba6c73fcf2e078382 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/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