]> git.meshlink.io Git - catta/commitdiff
call ./configure from bootstrap.sh
authorSven M. Hallberg <pesco@khjk.org>
Mon, 18 Aug 2014 16:03:38 +0000 (18:03 +0200)
committerSven M. Hallberg <pesco@khjk.org>
Mon, 18 Aug 2014 16:03:38 +0000 (18:03 +0200)
README
bootstrap.sh

diff --git a/README b/README
index 3efe4fb8aa89744e70dd24ff29fc96dacb21b391..1233fd772cd299704830e8a1073d20cc9dab02d5 100644 (file)
--- 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.
index 490738e0914e1b39fdae6f3ceee49251e63f313e..2b5c56f6a19367c94b554227eaaf4ecf085b7e28 100755 (executable)
@@ -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 "$@"