Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-06-04 11:12:14 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-06-04 11:12:14 (GMT)
commit47356c60f8590676405dff76e487eca4a823a420 (patch)
tree464a38ee3b21b1ff747e239419c97f034bafb8db /autogen.sh
parent73521615d760c4c8afbdf05f7ac372ce3a6c7c62 (diff)
Modernize build scripts a bit
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh21
1 files changed, 2 insertions, 19 deletions
diff --git a/autogen.sh b/autogen.sh
index 08c394c..9bd6fd0 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,20 +1,3 @@
#!/bin/sh
-# Run this to generate all the initial makefiles, etc.
-
-srcdir=`dirname $0`
-test -z "$srcdir" && srcdir=.
-
-PKG_NAME="artwork"
-
-(test -f $srcdir/README) || {
- echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
- echo " top-level $PKG_NAME directory"
- exit 1
-}
-
-which gnome-autogen.sh || {
- echo "You need to install gnome-common from the GNOME CVS"
- exit 1
-}
-
-REQUIRED_AUTOMAKE_VERSION=1.9 USE_GNOME2_MACROS=1 . gnome-autogen.sh
+autoreconf -i
+./configure "$@"