diff options
author | obache <obache@pkgsrc.org> | 2011-02-05 13:21:13 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2011-02-05 13:21:13 +0000 |
commit | bf5b630ba8415c47d8bec86e60a044a5f6468126 (patch) | |
tree | 39ea39094c792945aabdd0e4babb032f7345a93e /pkgtools | |
parent | 0bb562f7f2fb19c9e1c1cfa50f715e148be40157 (diff) | |
download | pkgsrc-bf5b630ba8415c47d8bec86e60a044a5f6468126.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/INSTALL | 11 |
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//'` ;; |