added prefix as a fallthrough for autogen.sh to configure by request of jdahlin fixes...
authorThomas Vander Stichele <thomas@apestaart.org>
Wed, 10 Apr 2002 12:57:42 +0000 (12:57 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Wed, 10 Apr 2002 12:57:42 +0000 (12:57 +0000)
Original commit message from CVS:

added prefix as a fallthrough for autogen.sh to configure by request of
jdahlin
fixes http://bugzilla.gnome.org/show_bug.cgi?id=78267 (ain't that cool ?)
if anyone knows how to coax getopt into passing unrecognized opts on, please
share

gst-autogen.sh

index 841cbfe..2d97284 100644 (file)
@@ -136,7 +136,7 @@ die_check ()
 autogen_options ()
 {
   # we use getopt stuff here, copied things from the example example.bash
-  TEMP=`getopt -o h --long noconfigure,nocheck,debug,help,with-automake:,with-autoconf: \
+  TEMP=`getopt -o h --long noconfigure,nocheck,debug,help,with-automake:,with-autoconf:,prefix:\
        -- "$@"`
 
   eval set -- "$TEMP"
@@ -161,12 +161,18 @@ autogen_options ()
           echo "+ debug output enabled"
           shift
           ;;
+      --prefix)
+         CONFIGURE_EXT_OPT="$CONFIGURE_EXT_OPT --prefix=$2"
+         echo "+ passing --prefix=$2 to configure"
+          shift 2
+          ;;
       -h|--help)
           echo "autogen.sh (autogen options) -- (configure options)"
           echo "autogen.sh help options: "
-          echo " --noconfigure            don\'t run the configure script"
-          echo " --nocheck                don\'t do version checks"
+          echo " --noconfigure            don't run the configure script"
+          echo " --nocheck                don't do version checks"
           echo " --debug                  debug the autogen process"
+         echo " --prefix                 will be passed on to configure"
           echo
           echo " --with-autoconf PATH     use autoconf in PATH"
           echo " --with-automake PATH     use automake in PATH"