diff options
author | grant <grant@pkgsrc.org> | 2005-02-19 04:25:31 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2005-02-19 04:25:31 +0000 |
commit | d84e86c700d43fcc406219d642a7741bddbdd707 (patch) | |
tree | aef856d88a0e231b4bcead64cdf18b4e684beb47 /mk/bsd.pkg.mk | |
parent | fab0a1b1538b003cbb0ab054b5ae2d6934bf4bf8 (diff) | |
download | pkgsrc-d84e86c700d43fcc406219d642a7741bddbdd707.tar.gz |
update the PLIST handling for AIX, shared libraries have the .so
extension when the runtime linker is used. from garbled@.
Diffstat (limited to 'mk/bsd.pkg.mk')
-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 \ } \ |