Merge pull request #85 from bska/use-standard-sh-in-ac
Don't use '==' when '=' is equally good
This commit is contained in:
commit
cc6c9311a0
@ -104,7 +104,7 @@ fi
|
||||
# don't probe if explicitly defined; by bailing out here if the
|
||||
# argument is set, we guard against typo, incompatible libs. etc.
|
||||
# being inadvertedly overrided by another (random) implementation
|
||||
if test "x$with_lapack" == x; then
|
||||
if test "x$with_lapack" = x; then
|
||||
|
||||
# LAPACK linked to by default? (is sometimes included in BLAS lib)
|
||||
if test $ax_lapack_ok = no; then
|
||||
|
@ -33,7 +33,7 @@ AC_DEFUN([GXX0X],[
|
||||
dune_cv_gplusplus_accepts_cplusplus11=disabled
|
||||
fi
|
||||
])
|
||||
if test "x$dune_cv_gplusplus_accepts_cplusplus11" == "xyes" ; then
|
||||
if test "x$dune_cv_gplusplus_accepts_cplusplus11" = "xyes" ; then
|
||||
CXX="$save_CXX -std=c++11"
|
||||
CXXCPP="$CXXCPP -std=c++11"
|
||||
else
|
||||
@ -56,7 +56,7 @@ AC_DEFUN([GXX0X],[
|
||||
dune_cv_gplusplus_accepts_cplusplus0x=disabled
|
||||
fi
|
||||
])
|
||||
if test "x$dune_cv_gplusplus_accepts_cplusplus0x" == "xyes" ; then
|
||||
if test "x$dune_cv_gplusplus_accepts_cplusplus0x" = "xyes" ; then
|
||||
CXX="$save_CXX -std=c++0x"
|
||||
CXXCPP="$CXXCPP -std=c++0x"
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user