File: autogen.sh

package info (click to toggle)
libx11 2%3A1.6.4-3%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 20,328 kB
  • sloc: ansic: 113,261; xml: 105,499; sh: 11,433; makefile: 2,151; perl: 352
file content (14 lines) | stat: -rw-r--r-- 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