summaryrefslogtreecommitdiff
path: root/qpid/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
commitf59b053fa60ef8fbb5eb0a252716252c8cc2a349 (patch)
tree5d76336c77f1a6fee1dd2d523a97ee50272eb051 /qpid/cpp/bootstrap
parent2dc2ee79dbc59af9af6103d3cfa4d5435b911d12 (diff)
downloadqpid-python-f59b053fa60ef8fbb5eb0a252716252c8cc2a349.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@481262 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/bootstrap')
-rwxr-xr-xqpid/cpp/bootstrap9
1 files changed, 7 insertions, 2 deletions
diff --git a/qpid/cpp/bootstrap b/qpid/cpp/bootstrap
index 253eff6a16..fe76a84989 100755
--- a/qpid/cpp/bootstrap
+++ b/qpid/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
-