diff options
author | Steve Zesch <[email protected]> | 2012-05-14 13:35:03 -0400 |
---|---|---|
committer | Steve Zesch <[email protected]> | 2012-05-14 13:35:03 -0400 |
commit | 130eaa7d69ed4803041774442ccb6a9d7ea1ec4c (patch) | |
tree | f7339140f1c496a53e1c43ae9f3742235f5ae1b9 /autogen.sh | |
parent | b42609046ef05f8d8be4b08ac50ea10a3c6dfe71 (diff) | |
download | mate-user-share-130eaa7d69ed4803041774442ccb6a9d7ea1ec4c.tar.bz2 mate-user-share-130eaa7d69ed4803041774442ccb6a9d7ea1ec4c.tar.xz |
Forked gnome-user-share. Work in progress.
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..8a1db7d --- /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-user-share" + +(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 || { + echo "You need to install mate-common from the MATE Git" + exit 1 +} + +REQUIRED_AUTOMAKE_VERSION=1.9 +USE_MATE2_MACROS=1 +USE_COMMON_DOC_BUILD=yes + +. mate-autogen |