Skip to content

Commit

Permalink
Fix unportable test(1) operator in configure (#575)
Browse files Browse the repository at this point in the history
'=' is the standard one, only some shells support '=='.
  • Loading branch information
0-wiz-0 authored and vslavik committed May 21, 2019
1 parent 80b48bb commit 0a984ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -274,7 +274,7 @@ AS_IF([test "x$have_cld2" = "xyes"],



if test "x$GXX" == "xyes"; then
if test "x$GXX" = "xyes"; then
AX_CXX_CHECK_FLAG([-Wall],[],[], [CXXFLAGS="$CXXFLAGS -Wall"])
AX_CXX_CHECK_FLAG([-Wextra],[],[], [CXXFLAGS="$CXXFLAGS -Wextra"])
fi
Expand Down

0 comments on commit 0a984ef

Please sign in to comment.