mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
9d662a51d2
Generate autoregen.sh, run configure.
16 lines
438 B
Bash
Executable file
16 lines
438 B
Bash
Executable file
#!/bin/sh
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
# a silly hack that generates autoregen.sh but it's handy
|
|
echo "#!/bin/sh" > autoregen.sh
|
|
echo "./autogen.sh $@ \$@" >> autoregen.sh
|
|
chmod +x autoregen.sh
|
|
|
|
test -n "$srcdir" || srcdir=$(dirname "$0")
|
|
test -n "$srcdir" || srcdit=.
|
|
(
|
|
cd "$srcdir" &&
|
|
AUTOPOINT='intltoolize --automake --copy' autoreconf -fiv
|
|
) || exit
|
|
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
|
|
|