diff options
author | Stefano Karapetsas <[email protected]> | 2011-12-13 23:50:42 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2011-12-13 23:50:42 +0100 |
commit | 419056bf41f38891c3bb5384293868b479478828 (patch) | |
tree | 5fdf9189477a81526587afd596557c36876c3949 /autogen.sh | |
parent | cfb5bafb134572090aba2b5064a9b27c5c784fc7 (diff) | |
download | mate-power-manager-419056bf41f38891c3bb5384293868b479478828.tar.bz2 mate-power-manager-419056bf41f38891c3bb5384293868b479478828.tar.xz |
added autogen.sh
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..edb005e --- /dev/null +++ b/autogen.sh @@ -0,0 +1,24 @@ +#!/bin/sh +# Run this to generate all the initial makefiles, etc. + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +PKG_NAME="mate-power-manager" + +(test -f $srcdir/configure.ac) || { + echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" + echo " top-level $PKG_NAME directory" + exit 1 +} + +which mate-autogen.sh || { + echo "You need to install mate-common from the MATE Git" + exit 1 +} + +REQUIRED_AUTOMAKE_VERSION=1.9 +MATE_DATADIR="$mate_datadir" + +. mate-autogen.sh + |