File: autogen.sh

package info (click to toggle)
libxi 2%3A1.7.4-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 3,312 kB
  • sloc: sh: 11,425; xml: 9,446; ansic: 7,208; makefile: 468
file content (14 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (139)
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