Blame gitcompile

Packit 675970
#!/bin/bash
Packit 675970
Packit 675970
touch ltconfig
Packit 675970
libtoolize --force --copy --automake
Packit 675970
aclocal $ACLOCAL_FLAGS
Packit 675970
autoheader
Packit 675970
automake --foreign --copy --add-missing
Packit 675970
touch depcomp		# seems to be missing for old automake
Packit 675970
autoconf
Packit 675970
export CFLAGS='-O2 -Wall -W -pipe -g'
Packit 675970
echo "CFLAGS=$CFLAGS"
Packit 675970
echo "./configure $@"
Packit 675970
./configure $@ || exit 1
Packit 675970
unset CFLAGS
Packit 675970
if [ -z "$GITCOMPILE_NO_MAKE" ]; then
Packit 675970
  make
Packit 675970
fi