diff options
author | Alan Conway <aconway@apache.org> | 2006-12-01 05:13:31 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2006-12-01 05:13:31 +0000 |
commit | 292a098994a6633c80ee5e50582525538efae044 (patch) | |
tree | 0dcb7373f8f440fe59640cc072f29eced218e56e | |
parent | fb9ad93a3d422c1e83c998f44c4782f7bf1d1a66 (diff) | |
download | qpid-python-292a098994a6633c80ee5e50582525538efae044.tar.gz |
Script to bootstrap autconf/automake in a fresh checkout.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@481160 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-x | cpp/bootstrap | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cpp/bootstrap b/cpp/bootstrap new file mode 100755 index 0000000000..253eff6a16 --- /dev/null +++ b/cpp/bootstrap @@ -0,0 +1,8 @@ +#!/bin/sh +aclocal -I m4 +autoheader +libtoolize --automake +automake +autoconf +./configure --enable-warnings --prefix=/tmp/qpid-inst CXXFLAGS=-g + |