summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2014-10-11 17:38:48 +0200
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2014-10-11 17:38:48 +0200
commit2882032396d3c1f3e56ca17ec6eeafdfb3efb5ca (patch)
tree3a89d2f1fa6626c7bfc726420c18cd37f70f1180 /configure.in
parent1aa1a4f6173e9ef59ac0b6bb054368c141000062 (diff)
downloaderlang-2882032396d3c1f3e56ca17ec6eeafdfb3efb5ca.tar.gz
configure.in: fix test == bashism
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index be169b8428..008fa38632 100644
--- a/configure.in
+++ b/configure.in
@@ -416,7 +416,7 @@ AC_SUBST(NATIVE_LIBS_ENABLED)
rm -f $ERL_TOP/lib/SKIP-APPLICATIONS
for app in `cd lib && ls -d *`; do
var=`eval echo \\$with_$app`
- if test X${var} == Xno; then
+ if test X${var} = Xno; then
echo "$app" >> $ERL_TOP/lib/SKIP-APPLICATIONS
fi
done