diff options
author | Tuncer Ayaz <[email protected]> | 2014-10-11 17:38:48 +0200 |
---|---|---|
committer | Tuncer Ayaz <[email protected]> | 2014-10-11 17:38:48 +0200 |
commit | 2882032396d3c1f3e56ca17ec6eeafdfb3efb5ca (patch) | |
tree | 3a89d2f1fa6626c7bfc726420c18cd37f70f1180 | |
parent | 1aa1a4f6173e9ef59ac0b6bb054368c141000062 (diff) | |
download | otp-2882032396d3c1f3e56ca17ec6eeafdfb3efb5ca.tar.gz otp-2882032396d3c1f3e56ca17ec6eeafdfb3efb5ca.tar.bz2 otp-2882032396d3c1f3e56ca17ec6eeafdfb3efb5ca.zip |
configure.in: fix test == bashism
-rw-r--r-- | configure.in | 2 |
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 |