From 1b15dc3ca8f616e9e650639a6c4c6f8a8a31688f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Mon, 28 Jun 2010 10:02:12 +0000 Subject: [PATCH] configure: make --disable-everything soft-disable things This allows explicitly enabled things to _select others with the intended result. Originally committed as revision 23843 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 642dfde3b4..60775b512f 100755 --- a/configure +++ b/configure @@ -1536,7 +1536,7 @@ for opt do --enable-debug=*) debuglevel="$optval" ;; --disable-everything) - map 'eval disable \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST + map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST ;; --enable-*=*|--disable-*=*) eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')