diff options
author | grant <grant> | 2005-02-19 04:25:31 +0000 |
---|---|---|
committer | grant <grant> | 2005-02-19 04:25:31 +0000 |
commit | d2d70a6828e861baa27dd3b2b90bc8f4eaf30d18 (patch) | |
tree | aef856d88a0e231b4bcead64cdf18b4e684beb47 | |
parent | 4d1fb4732a2ea638bd030b31b24628956db02dc1 (diff) | |
download | pkgsrc-d2d70a6828e861baa27dd3b2b90bc8f4eaf30d18.tar.gz |
update the PLIST handling for AIX, shared libraries have the .so
extension when the runtime linker is used. from garbled@.
-rw-r--r-- | mk/bsd.pkg.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index ac04662f859..48829744504 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1590 2005/02/16 11:01:03 agc Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1591 2005/02/19 04:25:31 grant Exp $ # # This file is in the public domain. # @@ -2624,12 +2624,12 @@ _DYLIB_AWK= \ } \ } -# Turn lib*.so.*, lib*.so into lib*.a. Drop duplicates. +# Turn lib*.so.*, lib*.so into lib*.so. Drop duplicates. _AIXLIB_AWK= \ /^@/ { lines[NR] = $$0; next } \ /.*\/lib[^\/]+\.so(\.[0-9]+)*$$/ { \ sub("(\\.[0-9]+)*$$", ""); \ - sub("\\.so$$", ".a"); \ + sub("\\.so$$", ".so"); \ lines[NR] = $$0; \ next \ } \ |