X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=autogen.sh;h=a639131d8aad119c586b9d2d549c1d6522896544;hb=655cd7831d0226c2e223280c61228be26f1bb8f8;hp=1a114eab0757191052fdd990f5a9e86724a86b5b;hpb=629401644d03c1fc57895409b74ea8267c276a4b;p=ncmpc.git diff --git a/autogen.sh b/autogen.sh index 1a114ea..a639131 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,16 +1,14 @@ -#! /bin/sh +#!/bin/sh -e -# Generate config.h.in -echo "touch stamp-h" -touch stamp-h +rm -rf config.cache build +mkdir build + +# create po/Makefile.in.in +glib-gettextize --force --copy # add aclocal.m4 to current dir echo "aclocal..." -aclocal -I $PWD/m4 - -# rerun libtoolize -echo "libtoolize..." -libtoolize --force +aclocal -I m4 # This generates the configure script from configure.in echo "autoconf..." @@ -21,9 +19,11 @@ autoheader # Generate Makefile.in from Makefile.am echo "automake..." -automake --add-missing +automake --add-missing $AUTOMAKE_FLAGS # configure -echo "./configure $*" -./configure $* +if test x$NOCONFIGURE = x; then + echo "./configure $*" + ./configure $* +fi