From: Gary V. Vaughan Date: Tue, 7 Aug 2001 20:20:14 +0000 (+0000) Subject: ltmain.in [irix*]: $with_gcc is either "yes" or "" (empty string) X-Git-Tag: release-1-4d~72 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f88c1445a6880ab4528056118b4fc1b59a36726d;p=thirdparty%2Flibtool.git ltmain.in [irix*]: $with_gcc is either "yes" or "" (empty string) with current autoconf, so we need to be robust to that when testing it, --- diff --git a/ChangeLog b/ChangeLog index e82b49865..597a06f8c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-08-07 Gary V. Vaughan + + ltmain.in [irix*]: $with_gcc is either "yes" or "" (empty string) + with current autoconf, so we need to be robust to that when testing + it, + 2001-08-06 Gary V. Vaughan From Brad : diff --git a/ltmain.in b/ltmain.in index d824487fe..d3d0535e8 100644 --- a/ltmain.in +++ b/ltmain.in @@ -1171,7 +1171,7 @@ EOF # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in - no/*-*-irix*) + no/*-*-irix* | /*-*-irix*) compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" ;;