diff options
Diffstat (limited to 'emulators/suse64_base/INSTALL')
-rw-r--r-- | emulators/suse64_base/INSTALL | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/emulators/suse64_base/INSTALL b/emulators/suse64_base/INSTALL deleted file mode 100644 index eedbd298ff0..00000000000 --- a/emulators/suse64_base/INSTALL +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -# $NetBSD: INSTALL,v 1.3 2003/05/06 17:41:10 jmmv Exp $ - -emul=linux -if [ "$2" != "POST-INSTALL" ]; then exit 0; fi - -cat <<EOF -============================================================================== - -Do not forget to include COMPAT_LINUX (and EXEC_ELF32 on NetBSD systems older -than 1.5) in your kernel configuration file. (Linux binaries require these -options 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 |