File: autogen.sh

package info (click to toggle)
compizconfig-python 0.7.6-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 120 kB
  • ctags: 135
  • sloc: makefile: 99; sh: 7
file content (16 lines) | stat: -rwxr-xr-x 289 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /bin/sh

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

ORIGDIR=`pwd`
cd $srcdir

autoreconf -v --install || exit 1
#glib-gettextize --copy --force || exit 1 
#intltoolize --automake --copy --force || exit 1

cd $ORIGDIR || exit $?

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