File: autogen.sh

package info (click to toggle)
twm 1%3A1.0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 1,684 kB
  • sloc: ansic: 11,238; sh: 4,310; yacc: 719; lex: 146; makefile: 84; sed: 4
file content (17 lines) | stat: -rw-r--r-- 348 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /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 app/twm"

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