mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
132b44e7f8
Create the macrodir. Remove the GETTXT macro that was clashing with INTLTOOL.
18 lines
451 B
Bash
Executable file
18 lines
451 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
|
|
|
|
mkdir -p m4
|
|
|
|
test -n "$srcdir" || srcdir=$(dirname "$0")
|
|
test -n "$srcdir" || srcdir=.
|
|
(
|
|
cd "$srcdir" &&
|
|
AUTOPOINT='intltoolize --automake -c -f' autoreconf -fivm
|
|
) || exit
|
|
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
|
|
|