You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
223 B
17 lines
223 B
#!/bin/sh
|
|
set -x
|
|
rm -f config.cache
|
|
|
|
type -p glibtoolize 1>/dev/null 2>&1
|
|
|
|
if test "$?" = "0"; then
|
|
glibtoolize --copy --force
|
|
else
|
|
libtoolize --copy --force
|
|
fi
|
|
|
|
aclocal -I m4
|
|
autoheader
|
|
automake -a -c -f
|
|
autoconf
|
|
exit
|