fluxbox/autogen.sh

24 lines
517 B
Bash
Raw Normal View History

2002-02-11 12:08:37 +00:00
#!/bin/sh
2003-05-14 16:41:48 +00:00
# autogen script for fluxbox.
2002-03-02 11:59:07 +00:00
2003-05-14 16:41:48 +00:00
dothis() {
echo "Executing: $*"
echo
2006-04-17 08:30:00 +00:00
$*
if [ $? -ne 0 ]; then
2003-05-14 16:41:48 +00:00
echo -e '\n ERROR: Carefully read the error message and'
echo ' try to figure out what went wrong.'
exit 1
fi
}
2002-03-02 11:59:07 +00:00
2003-05-19 22:44:51 +00:00
libtoolize --copy --force --automake
rm -f config.cache
dothis aclocal -I m4 ${ACLOCAL_FLAGS}
2003-05-14 16:41:48 +00:00
dothis autoheader
dothis automake -a -c
2003-05-14 16:41:48 +00:00
dothis autoconf
2003-07-19 19:39:43 +00:00
echo 'Success, now continue with ./configure'
2003-05-14 16:41:48 +00:00
echo 'Use configure --help for detailed help.'