summaryrefslogtreecommitdiff
path: root/cpp/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/bootstrap')
-rwxr-xr-xcpp/bootstrap9
1 files changed, 7 insertions, 2 deletions
diff --git a/cpp/bootstrap b/cpp/bootstrap
index 253eff6a16..fe76a84989 100755
--- a/cpp/bootstrap
+++ b/cpp/bootstrap
@@ -1,8 +1,13 @@
#!/bin/sh
+set -e
aclocal -I m4
autoheader
libtoolize --automake
+
+# Generate (for automake) lots of repetitive parts of tests/Makefile.am.
+(cd tests && rm -f gen.mk
+ perl -ne '/^include / or print' Makefile.am \
+ | make -f - abs_srcdir=`dirname $(pwd)` gen.mk )
+
automake
autoconf
-./configure --enable-warnings --prefix=/tmp/qpid-inst CXXFLAGS=-g
-