diff options
author | sof <unknown> | 2003-10-13 05:15:50 +0000 |
---|---|---|
committer | sof <unknown> | 2003-10-13 05:15:50 +0000 |
commit | b716bc2cb5cc1553b3dddd19a0037bb55cb740b4 (patch) | |
tree | bfe60e255268545c209ccfc157d292e261ea5397 /aclocal.m4 | |
parent | 781a72d5ad167f1eb4414efc2320bfc8aa8288da (diff) | |
download | haskell-b716bc2cb5cc1553b3dddd19a0037bb55cb740b4.tar.gz |
[project @ 2003-10-13 05:15:50 by sof]
oops, fix 'test' usage
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index f41542964a..c7ef8e7b0f 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -732,7 +732,7 @@ main() { }],AC_CV_NAME=`cat conftestval`, ifelse([$2], , [AC_CV_NAME=NotReallyAType; AC_CV_NAME_supported=no], AC_CV_NAME=$2), ifelse([$3], , [AC_CV_NAME=NotReallyATypeCross; AC_CV_NAME_supported=no], AC_CV_NAME=$3))]) dnl -if test "$AC_CV_NAME_supported" == yes; then +if test "$AC_CV_NAME_supported" = yes; then AC_MSG_RESULT($AC_CV_NAME) AC_DEFINE_UNQUOTED(AC_TYPE_NAME, $AC_CV_NAME) else |