diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-02-06 15:34:49 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-02-06 15:34:49 +0000 |
commit | c2d7711457d468d527890f2057883c133b50c3b7 (patch) | |
tree | 3ee4c98e384ba12317902b427ef85f4a26de0867 | |
parent | 48638606945e579672f97b09cb797de3e6aee9e7 (diff) |
slurp autogen-specific options to AUTOGEN_EXT_OPT for use in autogenning sub-packages (wingo)
Original commit message from CVS:
slurp autogen-specific options to AUTOGEN_EXT_OPT for use in autogenning
sub-packages (wingo)
-rw-r--r-- | gst-autogen.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gst-autogen.sh b/gst-autogen.sh index 4f8881c..1f4e171 100644 --- a/gst-autogen.sh +++ b/gst-autogen.sh @@ -100,13 +100,16 @@ autogen_options () for i in $@; do if test "$i" = "--autogen-noconfigure"; then NOCONFIGURE=defined + AUTOGEN_EXT_OPT="$AUTOGEN_EXT_OPT --autogen-noconfigure" echo "+ configure run disabled" elif test "$i" = "--autogen-nocheck"; then + AUTOGEN_EXT_OPT="$AUTOGEN_EXT_OPT --autogen-nocheck" NOCHECK=defined echo "+ autotools version check disabled" elif test "$i" = "--autogen-debug"; then DEBUG=defined echo "+ debug output enabled" + AUTOGEN_EXT_OPT="$AUTOGEN_EXT_OPT --autogen-debug" elif test "$i" = "--help"; then echo "autogen.sh help options: " echo " --autogen-noconfigure don't run the configure script" |