4
by Ted Gould
Building a build system, first start. |
1 |
#!/bin/sh
|
2 |
||
104
by Marco Trevisan (Treviño)
autogen.sh: remove deprecated defs, add srcdir |
3 |
srcdir=`dirname $0` |
4 |
test -z "$srcdir" && srcdir=. |
|
5 |
||
6 |
(test -f $srcdir/configure.ac) || { |
|
7 |
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" |
|
8 |
echo " top-level $PKG_NAME directory" |
|
9 |
exit 1 |
|
10 |
}
|
|
4
by Ted Gould
Building a build system, first start. |
11 |
|
12 |
which gnome-autogen.sh || { |
|
13 |
echo "You need gnome-common from GNOME SVN" |
|
14 |
exit 1 |
|
15 |
}
|
|
16 |
||
17 |
. gnome-autogen.sh |