Files
cdesktop/cde/autogen.sh
Jon Trulson 10eb1ef8e0 autogen.sh: remove the bogus "-I admin" option to aclocal
In addition, remove some code we do not use or need.
2021-07-04 19:23:08 -06:00

15 lines
195 B
Bash
Executable File

#!/bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
cd "$srcdir"
libtoolize --force --automake
aclocal
autoconf -f
autoheader
automake --foreign --include-deps --add-missing
exit $?