From: Sven M. Hallberg Date: Mon, 18 Aug 2014 16:03:38 +0000 (+0200) Subject: call ./configure from bootstrap.sh X-Git-Url: http://git.meshlink.io/?p=catta;a=commitdiff_plain;h=f3d2bd3ed27d895da403abe7c7f1c4cead4b3693 call ./configure from bootstrap.sh --- diff --git a/README b/README index 3efe4fb..1233fd7 100644 --- a/README +++ b/README @@ -4,9 +4,10 @@ containing only the common and core components TO BUILD FROM GIT: -./bootstrap -./configure +./bootstrap # first time +./configure ... # if other flags desired make +make check # to run some tests requires: libtool, pkgconfig, autoconf, automake @@ -21,7 +22,7 @@ requires: doxygen CONFIGURE SWITCHES: --enable-tests -build some stuff for 'make check'. +build some test programs, including those for 'make check'. --enable-core-docs include files from 'avahi-core' when building the doxygen docs. diff --git a/bootstrap.sh b/bootstrap.sh index 490738e..2b5c56f 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -47,4 +47,5 @@ case `uname -s` in ;; esac -CFLAGS="$CFLAGS -g -O0" exec ./autogen.sh $FLAGS "$@" +export CFLAGS="$CFLAGS -g -O0" +sh autogen.sh && ./configure $FLAGS "$@"