summaryrefslogtreecommitdiff
path: root/pkgtools/osabi
diff options
context:
space:
mode:
authorobache <obache>2011-02-05 13:21:13 +0000
committerobache <obache>2011-02-05 13:21:13 +0000
commit5b80c357037d922f4bc8fdc729513157e61299f1 (patch)
tree39ea39094c792945aabdd0e4babb032f7345a93e /pkgtools/osabi
parent13bcbc712a998fc245028c9d2d5397109c85e23d (diff)
downloadpkgsrc-5b80c357037d922f4bc8fdc729513157e61299f1.tar.gz
Kill Interix libc shlibname base OS_VERSION detection, broken for SUA.
It is based on ancient bsd.prefs.mk and not works as expected for SUA, because all SUA (5.2, 6.0 and 6.1) have libc.so.5.2 (and also old version). Moreover shlibname base OS version was introduced to speed up to avoid invoking `uname', but in this script, `uname' always will be invoked.
Diffstat (limited to 'pkgtools/osabi')
-rw-r--r--pkgtools/osabi/INSTALL11
1 files changed, 1 insertions, 10 deletions
diff --git a/pkgtools/osabi/INSTALL b/pkgtools/osabi/INSTALL
index 4f4cf9642c6..485a1202580 100644
--- a/pkgtools/osabi/INSTALL
+++ b/pkgtools/osabi/INSTALL
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL,v 1.1.1.1 2010/04/30 03:18:26 sbd Exp $
+# $NetBSD: INSTALL,v 1.2 2011/02/05 13:21:13 obache Exp $
UNAME="@UNAME@"
case ${STAGE} in
@@ -19,15 +19,6 @@ PRE-INSTALL)
DragonFly|FreeBSD|Linux)
OS_VERSION=`echo "${OS_VERSION}" | sed -e's/-.*$//'`
;;
- Interix)
- if ${TEST} -f /usr/lib/libc.so.3.5 ;then
- OS_VERSION="3.5"
- elif ${TEST} -f /usr/lib/libc.so.3.1 ;then
- OS_VERSION="3.1"
- else
- OS_VERSION="3.0"
- fi
- ;;
OSF1)
OS_VERSION=`echo "${OS_VERSION}" | sed -e's/^V//'`
;;