Codebase list telepathy-idle / 2b01622
autogen: Honor NOCONFIGURE=1 See http://people.gnome.org/~walters/docs/build-api.txt Colin Walters authored 10 years ago Guillaume Desmottes committed 10 years ago
1 changed file(s) with 15 addition(s) and 10 deletion(s). Raw diff Collapse all Expand all
22
33 autoreconf -i -Wno-portability
44
5 run_configure=true
6 for arg in $*; do
7 case $arg in
8 --no-configure)
9 run_configure=false
10 ;;
11 *)
12 ;;
13 esac
14 done
5 # Honor NOCONFIGURE for compatibility with gnome-autogen.sh
6 if test x"$NOCONFIGURE" = x; then
7 run_configure=true
8 for arg in $*; do
9 case $arg in
10 --no-configure)
11 run_configure=false
12 ;;
13 *)
14 ;;
15 esac
16 done
17 else
18 run_configure=false
19 fi
1520
1621 if test $run_configure = true; then
1722 ./configure "$@"