summaryrefslogtreecommitdiff
path: root/cpp/bootstrap
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2006-12-01 15:15:18 +0000
committerGordon Sim <gsim@apache.org>2006-12-01 15:15:18 +0000
commit000106462f3480bef55a1874f2949a74d59df9fd (patch)
tree472503cc271f5d2d49be1c008ffebe2ba353c4ef /cpp/bootstrap
parent14f06747d5d7bc6cde5efc54003624129d295956 (diff)
downloadqpid-python-000106462f3480bef55a1874f2949a74d59df9fd.tar.gz
Path from Jim Meyering (sent to qpid-dev list) to fix issue with gen.mk plus apr dependencies etc.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@481262 13f79535-47bb-0310-9956-ffa450edef68
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
-