Codebase list libfontenc / 30628f50-9a05-4d99-8f65-7618373212f6/main autogen.sh
30628f50-9a05-4d99-8f65-7618373212f6/main

Tree @30628f50-9a05-4d99-8f65-7618373212f6/main (Download .tar.gz)

autogen.sh @30628f50-9a05-4d99-8f65-7618373212f6/mainraw · history · blame

#! /bin/sh

srcdir=`dirname "$0"`
test -z "$srcdir" && srcdir=.

ORIGDIR=`pwd`
cd "$srcdir"

autoreconf -v --install || exit 1
cd "$ORIGDIR" || exit $?

git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
    git config --local format.subjectPrefix "PATCH libfontenc"

if test -z "$NOCONFIGURE"; then
    exec "$srcdir"/configure "$@"
fi