summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2003-05-12 15:11:27 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2003-05-12 15:11:27 +0000
commit94f3137eb64067531522d34e9bc67cc66fd6d00b (patch)
treeca3fb71c6e5ba94a4f3125c19166587c49af1952
parent06eb9f47626a6f0abdab20c29c90428e2f541133 (diff)
downloadgstreamer-plugins-bad-94f3137eb64067531522d34e9bc67cc66fd6d00b.tar.gz
fixes 107967
Original commit message from CVS: fixes 107967
-rwxr-xr-xautogen.sh7
m---------common0
2 files changed, 4 insertions, 3 deletions
diff --git a/autogen.sh b/autogen.sh
index df5cb8f55..722967952 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -72,14 +72,14 @@ tool_run "$automake" "-a -c"
# if enable exists, add an -enable option for each of the lines in that file
if test -f enable; then
for a in `cat enable`; do
- CONFIGURE_OPT="$CONFIGURE_OPT --enable-$a"
+ CONFIGURE_FILE_OPT="--enable-$a"
done
fi
# if disable exists, add an -disable option for each of the lines in that file
if test -f disable; then
for a in `cat disable`; do
- CONFIGURE_OPT="$CONFIGURE_OPT --disable-$a"
+ CONFIGURE_FILE_OPT="$CONFIGURE_FILE_OPT --disable-$a"
done
fi
@@ -92,9 +92,10 @@ test -n "$NOCONFIGURE" && {
echo "+ running configure ... "
test ! -z "$CONFIGURE_DEF_OPT" && echo " ./configure default flags: $CONFIGURE_DEF_OPT"
test ! -z "$CONFIGURE_EXT_OPT" && echo " ./configure external flags: $CONFIGURE_EXT_OPT"
+test ! -z "$CONFIGURE_FILE_OPT" && echo " ./configure enable/disable flags: $CONFIGURE_FILE_OPT"
echo
-./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT || {
+./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT $CONFIGURE_FILE_OPT || {
echo " configure failed"
exit 1
}
diff --git a/common b/common
-Subproject ed429334bba35b10172ba97d9b3795b75a65b38
+Subproject c5d7301d645fbee2881c30e86152cb3d2152e33