aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2014-09-08 22:58:48 -0500
committerTed Gould <ted@gould.cx>2014-09-08 22:58:48 -0500
commit334e3b3130cbde5a96e6da5323d40418db80f8ef (patch)
tree299d5e2a5cdaab892fe7c92b9405f721635124e3 /autogen.sh
parentcc51d0fc02f2980cc08fcd6cfc929ea61ff9d93a (diff)
parent059246d136ed8c24c5e78e6a966bf2dfc945fe4e (diff)
downloadayatana-indicator-power-334e3b3130cbde5a96e6da5323d40418db80f8ef.tar.gz
ayatana-indicator-power-334e3b3130cbde5a96e6da5323d40418db80f8ef.tar.bz2
ayatana-indicator-power-334e3b3130cbde5a96e6da5323d40418db80f8ef.zip
Merge trunk
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index 1912c87..0000000
--- a/autogen.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-test -n "$srcdir" || srcdir=`dirname "$0"`
-test -n "$srcdir" || srcdir=.
-
-olddir=`pwd`
-cd $srcdir
-
-AUTORECONF=`which autoreconf`
-if test -z $AUTORECONF; then
- echo "*** No autoreconf found, please intall it ***"
- exit 1
-fi
-
-INTLTOOLIZE=`which intltoolize`
-if test -z $INTLTOOLIZE; then
- echo "*** No intltoolize found, please install the intltool package ***"
- exit 1
-fi
-
-mkdir -p build-aux
-
-autopoint --force
-AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose
-
-cd $olddir
-test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"