File: autogen.sh

package info (click to toggle)
xinput-calibrator 0.7.5%2Bgit20140201-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, jessie, jessie-kfreebsd, stretch
  • size: 436 kB
  • ctags: 216
  • sloc: cpp: 2,292; sh: 80; makefile: 53
file content (12 lines) | stat: -rwxr-xr-x 195 bytes parent folder | download | duplicates (623)
1
2
3
4
5
6
7
8
9
10
11
12
#! /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 "$@"