summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 1ca03364f98f4d6402617c3443fdb7c25c8d7b9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.

PKG_NAME="GNOME Core Desktop"

(test -f $srcdir/configure.in \
  && test -f $srcdir/HACKING \
  && test -d $srcdir/libgnome-desktop) || {
    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
    echo " top-level gnome directory"
    exit 1
}


which gnome-autogen.sh || {
    echo "You need to install gnome-common from the GNOME SVN"
    exit 1
}

if test "`which gnomevfs-copy`" = ""; then
	gnomevfs-copy http://api.gnome.org/gnome-about/foundation-members gnome-about/foundation-members.list
fi
touch gnome-about/foundation-members.list

REQUIRED_AUTOMAKE_VERSION=1.9 . gnome-autogen.sh