pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/mk/check check-shlibs-macho.awk: revert previous
details: https://anonhg.NetBSD.org/pkgsrc/rev/d9744b260e1a
branches: trunk
changeset: 381436:d9744b260e1a
user: dbj <dbj%pkgsrc.org@localhost>
date: Thu Jun 07 07:00:10 2018 +0000
description:
check-shlibs-macho.awk: revert previous
Revert this fix until we can determine a possibly better fix.
diffstat:
mk/check/check-shlibs-macho.awk | 11 +----------
1 files changed, 1 insertions(+), 10 deletions(-)
diffs (28 lines):
diff -r b5b6434f0da8 -r d9744b260e1a mk/check/check-shlibs-macho.awk
--- a/mk/check/check-shlibs-macho.awk Thu Jun 07 06:44:31 2018 +0000
+++ b/mk/check/check-shlibs-macho.awk Thu Jun 07 07:00:10 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: check-shlibs-macho.awk,v 1.6 2018/06/07 04:58:46 dbj Exp $
+# $NetBSD: check-shlibs-macho.awk,v 1.7 2018/06/07 07:00:10 dbj Exp $
#
# Read a list of potential Mach-O binaries from stdin.
@@ -70,18 +70,9 @@
function checkshlib(DSO, needed, found) {
cmd = "otool -XL " shquote(DSO) " 2>/dev/null"
- libno = 0
while ((cmd | getline) > 0) {
if ($0 !~ /^\t/)
continue
- #
- # The first lib is the "install_name". Allow it to
- # be just the library basename name to support modules.
- #
- if (libno++ == 0 &&
- $1 == parts[split(DSO, parts, "/")]) {
- continue
- }
needed[$1] = ""
}
close(cmd)
Home |
Main Index |
Thread Index |
Old Index