2013-07-17 14:48:53 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Run this to generate all the initial makefiles, etc.
|
2013-07-08 23:15:13 +00:00
|
|
|
|
2013-08-21 23:44:01 +00:00
|
|
|
FOUND_GNOME_AUTOGEN_SH=1
|
2013-07-08 23:15:13 +00:00
|
|
|
|
2013-08-21 23:44:01 +00:00
|
|
|
which gnome-autogen.sh &> /dev/null || FOUND_GNOME_AUTOGEN_SH=0
|
2013-07-17 14:48:53 +00:00
|
|
|
|
2013-08-21 23:44:01 +00:00
|
|
|
if test x"$FOUND_GNOME_AUTOGEN_SH" = x"1"; then
|
|
|
|
gnome-autogen.sh
|
2013-07-17 14:48:53 +00:00
|
|
|
else
|
2013-08-21 23:44:01 +00:00
|
|
|
echo "GNOME's gnome-autogen.sh can not be found in your path. If you have it in a"
|
|
|
|
echo "non-trivial place, simply call it now, with e.g."
|
2013-08-22 21:35:30 +00:00
|
|
|
echo "/non/trivial/dir/gnome-autogen.sh. In RPM based distributions it can be"
|
|
|
|
echo "found in the gnome-common package."
|
2013-07-17 14:48:53 +00:00
|
|
|
fi
|
2013-08-21 23:44:01 +00:00
|
|
|
|