summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorobache <obache@pkgsrc.org>2011-02-05 13:21:13 +0000
committerobache <obache@pkgsrc.org>2011-02-05 13:21:13 +0000
commit54b0a59b0946210214eff876191fb6ff52620bd8 (patch)
tree39ea39094c792945aabdd0e4babb032f7345a93e /pkgtools
parent7ba91adb6d1c9ee09f8b0b461cf5505d1e11a599 (diff)
downloadpkgsrc-54b0a59b0946210214eff876191fb6ff52620bd8.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')
-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//'`
;;