xenocara/app/bitmap/autogen.sh

18 lines
351 B
Bash
Raw Permalink Normal View History

2007-03-03 03:25:03 -07:00
#! /bin/sh
2019-08-15 10:56:00 -06:00
srcdir=`dirname "$0"`
2007-03-03 03:25:03 -07:00
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
2019-08-15 10:56:00 -06:00
cd "$srcdir"
2007-03-03 03:25:03 -07:00
autoreconf -v --install || exit 1
2019-08-15 10:56:00 -06:00
cd "$ORIGDIR" || exit $?
git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
git config --local format.subjectPrefix "PATCH app/bitmap"
2007-03-03 03:25:03 -07:00
2015-01-25 04:30:36 -07:00
if test -z "$NOCONFIGURE"; then
2019-08-15 10:56:00 -06:00
exec "$srcdir"/configure "$@"
2015-01-25 04:30:36 -07:00
fi