pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk update the PLIST handling for AIX, shared libraries...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/303239e76a39
branches:  trunk
changeset: 489257:303239e76a39
user:      grant <grant%pkgsrc.org@localhost>
date:      Sat Feb 19 04:25:31 2005 +0000

description:
update the PLIST handling for AIX, shared libraries have the .so
extension when the runtime linker is used. from garbled@.

diffstat:

 mk/bsd.pkg.mk |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (24 lines):

diff -r 2e16f5d3c0f9 -r 303239e76a39 mk/bsd.pkg.mk
--- a/mk/bsd.pkg.mk     Sat Feb 19 04:19:59 2005 +0000
+++ b/mk/bsd.pkg.mk     Sat Feb 19 04:25:31 2005 +0000
@@ -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 @@
                        }                       \
        }
 
-# 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                            \
        }                                       \



Home | Main Index | Thread Index | Old Index