diff options
author | Bruce Yinhe <[email protected]> | 2014-10-31 16:02:12 +0100 |
---|---|---|
committer | Bruce Yinhe <[email protected]> | 2014-10-31 16:02:12 +0100 |
commit | 5ab95c910b3d0ea2c102f5b6d081e1a548176ec0 (patch) | |
tree | b1468303736836925a2a814f5da6e5c75a479f8b | |
parent | ea28b7650ee9df1285d4c2a5efc49749e909485e (diff) | |
parent | c385f44d46638d54d325cab48c05ed62c819fa86 (diff) | |
download | otp-5ab95c910b3d0ea2c102f5b6d081e1a548176ec0.tar.gz otp-5ab95c910b3d0ea2c102f5b6d081e1a548176ec0.tar.bz2 otp-5ab95c910b3d0ea2c102f5b6d081e1a548176ec0.zip |
Merge branch 'maint'
-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 |