File: autogen.sh

package info (click to toggle)
x11-utils 7.3%2B2%2Bnmu1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 8,392 kB
  • ctags: 2,095
  • sloc: ansic: 19,185; sh: 13,187; makefile: 964
file content (13 lines) | stat: -rwxr-xr-x 196 bytes parent folder | download | duplicates (89)
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 "$@"