diff options
author | tron <tron> | 2000-11-27 15:57:43 +0000 |
---|---|---|
committer | tron <tron> | 2000-11-27 15:57:43 +0000 |
commit | 08b5a6c4293a59f13fe640af1ec636e3812c9b80 (patch) | |
tree | 024faebaa6aae21a285e8dfd00cde9417deb1aae /mk | |
parent | 35f2540c1b8038aa5f029fbebb385c82506afdb4 (diff) | |
download | pkgsrc-08b5a6c4293a59f13fe640af1ec636e3812c9b80.tar.gz |
Don't remove package list entries ending on ".so" on ELF systems any more.
With "libtool-1.3.5nb9" or newer shared objects are named like that.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 02e71c5418a..841b6798411 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.618 2000/11/26 21:12:54 mycroft Exp $ +# $NetBSD: bsd.pkg.mk,v 1.619 2000/11/27 15:57:43 tron Exp $ # # This file is in the public domain. # @@ -1786,7 +1786,6 @@ root-install: next; \ } \ /.*\/lib[^\/]+\.so\.[0-9]+$$/ { next; } \ - /.*\/lib[^\/]+\.so$$/ { next; } \ { print; }' < ${PLIST} > ${PLIST}.tmp && ${MV} ${PLIST}.tmp ${PLIST}; \ ;; \ "a.out") \ @@ -3017,7 +3016,6 @@ print-PLIST: case "$$shlib_type" in \ "ELF") \ RMELFLIBS='-e /.*\/lib[^\/]*\.so\.[0-9]*$$/d \ - -e /.*\/lib[^\/]*\.so$$/d' ; \ esac ; \ ${FIND} ${PREFIX}/. -newer ${EXTRACT_COOKIE} \! -type d \ | ${SED} \ |