From: Bruno Haible Date: Mon, 14 Oct 2002 13:19:20 +0000 (+0000) Subject: Not all packages using libtool are GNU packages. X-Git-Tag: v0.12~1267 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b581b848cf4883462b0485a9fcde0e8bc8bfb59b;p=thirdparty%2Fgettext.git Not all packages using libtool are GNU packages. --- diff --git a/src/ChangeLog b/src/ChangeLog index 9ec121058..ec783d2c7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2002-10-14 Bruno Haible + + * project-id: When testing for "GNU $package", ignore libtool, because + libtool.m4 calls a package "GNU $package" even if it is not GNU. + Reported by Andrew Suffield . + 2002-10-03 Bruno Haible * msgl-equal.h (message_equal, message_list_equal, diff --git a/src/project-id b/src/project-id index fc746c605..5ea3a17ef 100755 --- a/src/project-id +++ b/src/project-id @@ -28,7 +28,7 @@ while true; do ;; esac if test -n "$package"; then - is_gnu=`LC_ALL=C grep "GNU $package" * 2>/dev/null` + is_gnu=`LC_ALL=C grep "GNU $package" * 2>/dev/null | grep -v '^libtool:'` if test -n "$is_gnu"; then package="GNU $package" fi