diff options
author | Lukas Larsson <[email protected]> | 2013-09-06 14:10:27 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2013-09-06 14:10:27 +0200 |
commit | 1305affcad9b575ed067e5983b75bbbb35f30171 (patch) | |
tree | 92383b6b261d05979e24a20f799831e3265ccca6 | |
parent | 5e91e9cebf284e0a206d3c82c84f04b23015e4fd (diff) | |
parent | 4b004701819e885f4c8e1a0fd1b4eb9ed5fa2de2 (diff) | |
download | otp-1305affcad9b575ed067e5983b75bbbb35f30171.tar.gz otp-1305affcad9b575ed067e5983b75bbbb35f30171.tar.bz2 otp-1305affcad9b575ed067e5983b75bbbb35f30171.zip |
Merge branch 'lukas/skip-extra-applications/OTP-11288' into maint
* lukas/skip-extra-applications/OTP-11288:
Fix sh compatability issue
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index bcb0581e0d..f25a068be9 100644 --- a/configure.in +++ b/configure.in @@ -393,8 +393,8 @@ AC_SUBST(NATIVE_LIBS_ENABLED) rm -f $ERL_TOP/lib/SKIP-APPLICATIONS for app in `cd lib && ls -d *`; do - var="with_$app" - if test X${!var} == Xno; then + var=`eval echo \\$with_$app` + if test X${var} == Xno; then echo "$app" >> $ERL_TOP/lib/SKIP-APPLICATIONS fi done |