aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-05-14 16:41:48 (GMT)
committerfluxgen <fluxgen>2003-05-14 16:41:48 (GMT)
commit93220b5f1abee3057b292abb958a437ebbc707b4 (patch)
tree7133e090f1920611c9c0213953ceb30ae95f7d83 /autogen.sh
parentcf52e55f0e28f93fb8b7a5d34f9e12676fdc2466 (diff)
downloadfluxbox-93220b5f1abee3057b292abb958a437ebbc707b4.zip
fluxbox-93220b5f1abee3057b292abb958a437ebbc707b4.tar.bz2
improved
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh26
1 files changed, 19 insertions, 7 deletions
diff --git a/autogen.sh b/autogen.sh
index 830f841..46ea090 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,10 +1,22 @@
1#!/bin/sh 1#!/bin/sh
2libtoolize --copy --force --automake 2# autogen script for fluxbox.
3rm -f config.cache
4aclocal -I .
5autoheader
6automake -a
7autoconf
8echo "Done."
9 3
4dothis() {
5 echo "Executing: $*"
6 echo
7 if ! $* ;then
8 echo -e '\n ERROR: Carefully read the error message and'
9 echo ' try to figure out what went wrong.'
10 exit 1
11 fi
12}
10 13
14dothis libtoolize --copy --force --automake
15dothis rm -f config.cache
16dothis aclocal -I .
17dothis autoheader
18dothis automake -a
19dothis autoconf
20
21echo 'Succes, now continue with ./configure'
22echo 'Use configure --help for detailed help.'