bf0d256586
There is no need to keep INSTALL, install-sh, ltconfig, mkinstalldirs in git, as they can be created by 'automake -a -c' as needed. In fact, it turns out ltconfig and mkinstalldirs are not needed at all any more.
23 lines
532 B
Bash
Executable file
23 lines
532 B
Bash
Executable file
#!/bin/sh
|
|
# autogen script for fluxbox.
|
|
|
|
dothis() {
|
|
echo "Executing: $*"
|
|
echo
|
|
$*
|
|
if [ $? -ne 0 ]; then
|
|
echo -e '\n ERROR: Carefully read the error message and'
|
|
echo ' try to figure out what went wrong.'
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
libtoolize --copy --force --automake
|
|
rm -f config.cache
|
|
dothis aclocal -I . ${ACLOCAL_FLAGS}
|
|
dothis autoheader
|
|
dothis automake -a -c --warnings=none
|
|
dothis autoconf
|
|
|
|
echo 'Success, now continue with ./configure'
|
|
echo 'Use configure --help for detailed help.'
|