summaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-01-23 02:43:43 +0000
committerLennart Poettering <lennart@poettering.net>2005-01-23 02:43:43 +0000
commiteba917e0f52c45e06ba46ff374987ae19179cc30 (patch)
tree1717260157cd0efd16274e531ea41d7063c365cc /bootstrap.sh
parent038c4e790c1e7fb8f6a6b264913ae534d247cf93 (diff)
add softmodem support
git-svn-id: file:///home/lennart/svn/public/ivcall/trunk@22 e0b13411-74c3-0310-b366-a0654dd0340f
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index fae21ac..1c62cd0 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -27,19 +27,21 @@ run_versioned() {
if [ "x$1" = "xam" ] ; then
set -ex
- run_versioned automake 1.7 -a -c
+ run_versioned automake 1.7 -a -c --foreign
./config.status
else
set -ex
+
rm -rf autom4te.cache
rm -f config.cache
run_versioned aclocal 1.7
+
autoheader
- run_versioned automake 1.7 -a -c
+ run_versioned automake 1.7 -a -c --foreign
autoconf -Wall
- ./configure --sysconfdir=/etc "$@"
+ CFLAGS="-g -O0" ./configure --sysconfdir=/etc "$@"
make clean
fi