diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2021-03-05 10:08:14 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2021-03-05 10:08:14 +0900 |
commit | 374d0b57dade4c128ca5b7e51a4b1a91d4af13aa (patch) | |
tree | 35a91b2803ca4579f1f4f1098fa55279d928ad35 /maint.mk | |
parent | 61fb427c104d6f2334aaee9c7d90d8287d521b17 (diff) | |
download | wget-374d0b57dade4c128ca5b7e51a4b1a91d4af13aa.tar.gz wget-374d0b57dade4c128ca5b7e51a4b1a91d4af13aa.tar.bz2 wget-374d0b57dade4c128ca5b7e51a4b1a91d4af13aa.zip |
Imported Upstream version 1.16.2upstream/1.16.2
Diffstat (limited to 'maint.mk')
-rw-r--r-- | maint.mk | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,7 +2,7 @@ # This Makefile fragment tries to be general-purpose enough to be # used by many projects via the gnulib maintainer-makefile module. -## Copyright (C) 2001-2014 Free Software Foundation, Inc. +## Copyright (C) 2001-2015 Free Software Foundation, Inc. ## ## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -1648,14 +1648,14 @@ _gl_tight_scope: $(bin_PROGRAMS) perl -lne \ '$(_gl_TS_function_match) and print "^$$1\$$"' $$hdr; \ ) | sort -u > $$t; \ - nm -e $(_gl_TS_obj_files)|$(SED) -n 's/.* T //p'|grep -Ev -f $$t \ + nm -g $(_gl_TS_obj_files)|$(SED) -n 's/.* T //p'|grep -Ev -f $$t \ && { echo the above functions should have static scope >&2; \ exit 1; } || : ; \ ( printf '^%s$$\n' '__.*' $(_gl_TS_unmarked_extern_vars); \ perl -lne '$(_gl_TS_var_match) and print "^$$1\$$"' \ $$hdr $(_gl_TS_other_headers) \ ) | sort -u > $$t; \ - nm -e $(_gl_TS_obj_files) | $(SED) -n 's/.* [BCDGRS] //p' \ + nm -g $(_gl_TS_obj_files) | $(SED) -n 's/.* [BCDGRS] //p' \ | sort -u | grep -Ev -f $$t \ && { echo the above variables should have static scope >&2; \ exit 1; } || : |