From f3d2bd3ed27d895da403abe7c7f1c4cead4b3693 Mon Sep 17 00:00:00 2001 From: "Sven M. Hallberg" Date: Mon, 18 Aug 2014 18:03:38 +0200 Subject: [PATCH] call ./configure from bootstrap.sh --- README | 7 ++++--- bootstrap.sh | 3 ++- 2 files changed, 6 insertions(+), 4 deletions(-) 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 "$@" -- 2.39.2