File: autogen.sh

package info (click to toggle)
libxmu 2%3A1.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 2,404 kB
  • ctags: 890
  • sloc: sh: 11,332; ansic: 8,565; xml: 4,435; makefile: 138; cpp: 102
file content (14 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (138)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

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

ORIGDIR=`pwd`
cd $srcdir

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

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