aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2013-09-06 14:10:27 +0200
committerLukas Larsson <[email protected]>2013-09-06 14:10:27 +0200
commit1305affcad9b575ed067e5983b75bbbb35f30171 (patch)
tree92383b6b261d05979e24a20f799831e3265ccca6
parent5e91e9cebf284e0a206d3c82c84f04b23015e4fd (diff)
parent4b004701819e885f4c8e1a0fd1b4eb9ed5fa2de2 (diff)
downloadotp-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.in4
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