aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rwxr-xr-xconfigure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index e728be7..a039cff 100755
--- a/configure.ac
+++ b/configure.ac
@@ -95,7 +95,7 @@ AC_ARG_WITH(out-jim-ext,
If 'default' is given, the default extensions will not be added.
])
-if test "$with_out_jim_ext" == "default"; then
+if test "$with_out_jim_ext" = "default"; then
# but we always include stdlib
ext_default=stdlib
with_out_jim_ext=
@@ -198,7 +198,7 @@ for i in $ext_all; do
met=1
for d in $dep; do
eval "check=\$$d"
- if test "$check" == "no" -o -z "$check" ; then
+ if test "$check" = "no" -o -z "$check" ; then
met=0
break
fi