mirror of
https://gitlab.gnome.org/GNOME/gitg
synced 2024-10-31 04:58:58 +00:00
c25487f7c7
Needed when hooking autogen in the autogen of a super project.
18 lines
304 B
Bash
Executable file
18 lines
304 B
Bash
Executable file
#!/bin/sh
|
|
mkdir -p m4
|
|
autoreconf -fiv -Wall || exit
|
|
|
|
run_configure=true
|
|
for arg in $*; do
|
|
case $arg in
|
|
--no-configure)
|
|
run_configure=false
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if test $run_configure = true; then
|
|
./configure --enable-maintainer-mode "$@"
|
|
fi
|