File: autogen.sh

package info (click to toggle)
x11-xserver-utils 7.7%2B8
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 12,048 kB
  • sloc: sh: 22,048; ansic: 15,929; makefile: 649; perl: 257
file content (14 lines) | stat: -rwxr-xr-x 209 bytes parent folder | download | duplicates (136)
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