diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2003-09-29 14:07:07 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2003-09-29 14:07:07 +0000 |
commit | 0eded786d494c792ae6f23f99edf08f7b2edec22 (patch) | |
tree | 5bf0bf31e3f0c02c7f60380d128fa40b72dc4b4e /gst-plugin | |
parent | 66a454c3ae11f8ae4158fe5f914baca92bb0dc29 (diff) |
add autoregen.sh
Original commit message from CVS:
add autoregen.sh
Diffstat (limited to 'gst-plugin')
-rwxr-xr-x | gst-plugin/autogen.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gst-plugin/autogen.sh b/gst-plugin/autogen.sh index 8765890..549c4a4 100755 --- a/gst-plugin/autogen.sh +++ b/gst-plugin/autogen.sh @@ -9,6 +9,10 @@ fi # if you would want to be running autoheader as well, you will have to do # something similar as above for it if test -z $AUTOCONF; then export AUTOCONF=autoconf; fi +echo "#!/bin/sh" > autoregen.sh +echo "./autogen.sh $@ \$@" >> autoregen.sh +chmod +x autoregen.sh + set -x # if any of these steps fails, the others will not execute, which is good @@ -18,5 +22,4 @@ libtoolize --force && \ # autoheader $AUTOMAKE -a && \ $AUTOCONF && \ -./configure - +./configure $* |