File: autogen.sh

package info (click to toggle)
xrestop 0.4%2Bgit20130926-3
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye
  • size: 200 kB
  • sloc: ansic: 559; makefile: 18; sh: 7
file content (13 lines) | stat: -rwxr-xr-x 196 bytes parent folder | download | duplicates (90)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

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

ORIGDIR=`pwd`
cd $srcdir

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

$srcdir/configure --enable-maintainer-mode "$@"