File: autogen.sh

package info (click to toggle)
xrestop 0.6-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 192 kB
  • sloc: ansic: 566; makefile: 17; 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 "$@"