summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2013-08-21 19:00:08 -0700
committerJames Zern <jzern@google.com>2013-08-21 19:00:08 -0700
commitccb6bdca75396f79b1a50d1efa8f1e0d8aab2221 (patch)
treedce3289cc857a85101d184fb63b8e0044888f63e /configure
parent42ab401fd3227ec1235d71f368f21f7fa08c77d3 (diff)
downloadlibvpx-ccb6bdca75396f79b1a50d1efa8f1e0d8aab2221.tar
libvpx-ccb6bdca75396f79b1a50d1efa8f1e0d8aab2221.tar.gz
libvpx-ccb6bdca75396f79b1a50d1efa8f1e0d8aab2221.tar.bz2
libvpx-ccb6bdca75396f79b1a50d1efa8f1e0d8aab2221.zip
configure: fix action expansion
enable|disable -> (enable|disable)_feature Change-Id: I7494913c78ebe8bb532fa6545e0ae53a79ccd388
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 16326701b..a2520819e 100755
--- a/configure
+++ b/configure
@@ -363,7 +363,7 @@ process_cmdline() {
eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
if echo "${EXPERIMENT_LIST}" | grep "^ *$option\$" >/dev/null; then
if enabled experimental; then
- $action $option
+ ${action}_feature $option
else
log_echo "Ignoring $opt -- not in experimental mode."
fi