summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorChase Douglas <chase.douglas@canonical.com>2010-06-21 21:08:51 -0400
committerHenrik Rydberg <rydberg@euromail.se>2010-06-22 11:44:16 +0200
commit0647b37dfc35145d74822844ad7e54bf5c218369 (patch)
tree47225422ade9159ac08d61bcf16a4a45cf336dfb /autogen.sh
parent172221f14fc91ebb37aa4c561ad733088cc3c3bf (diff)
Move to autotools
[rydberg@euromail.se: minor fixups] Signed-off-by: Chase Douglas <chase.douglas@canonical.com> Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..904cd67
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,12 @@
1#! /bin/sh
2
3srcdir=`dirname $0`
4test -z "$srcdir" && srcdir=.
5
6ORIGDIR=`pwd`
7cd $srcdir
8
9autoreconf -v --install || exit 1
10cd $ORIGDIR || exit $?
11
12$srcdir/configure --enable-maintainer-mode "$@"