aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure4
-rwxr-xr-xconfigure.ac4
-rw-r--r--examples.api/Makefile4
3 files changed, 6 insertions, 6 deletions
diff --git a/configure b/configure
index 528fbc0..1f763b9 100755
--- a/configure
+++ b/configure
@@ -3604,7 +3604,7 @@ if test "${with_out_jim_ext+set}" = set; then :
fi
-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=
@@ -3914,7 +3914,7 @@ $as_echo "disabled" >&6; }
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
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
diff --git a/examples.api/Makefile b/examples.api/Makefile
index 059adda..a7cc6d1 100644
--- a/examples.api/Makefile
+++ b/examples.api/Makefile
@@ -1,6 +1,6 @@
CFLAGS+= -Wall -g
-CFLAGS+= -L.. -I..
-CFLAGS+= -ljim
+CFLAGS+= -I..
+LDLIBS += -L.. -ljim
EXAMPLES= \
jim_command \