mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Test for $GCC = yes instead of if it is non-empty. This
way it is possible to use ac_cv_c_compiler_gnu=no to force configure to think it is using non-GNU C compiler.
This commit is contained in:
parent
3dbbea82b7
commit
c7189d981a
1 changed files with 1 additions and 1 deletions
|
@ -538,7 +538,7 @@ main()
|
|||
|
||||
Wno_uninitialized=no
|
||||
|
||||
if test -n "$GCC" ; then
|
||||
if test "x$GCC" = xyes ; then
|
||||
echo
|
||||
echo "GCC extensions:"
|
||||
gl_VISIBILITY
|
||||
|
|
Loading…
Reference in a new issue