Skip to content
Snippets Groups Projects
Commit d670bbc7 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #20106: gnome: make autogen dependencies more obvious

parent 1ae4b50e
Branches
Tags
No related merge requests found
...@@ -9,7 +9,7 @@ cd $srcdir ...@@ -9,7 +9,7 @@ cd $srcdir
AUTORECONF=`which autoreconf` AUTORECONF=`which autoreconf`
if test -z $AUTORECONF; then if test -z $AUTORECONF; then
echo "*** No autoreconf found, please intall it ***" echo "*** No autoreconf found, please install it ***"
exit 1 exit 1
fi fi
...@@ -26,6 +26,19 @@ if test -z $GNOMEDOC; then ...@@ -26,6 +26,19 @@ if test -z $GNOMEDOC; then
exit 1 exit 1
fi fi
# make sure we have gnome common, which contains macros we need
GNOMECOMMON=`which gnome-autogen.sh`
if test -z $GNOMECOMMON; then
echo "you need to install gnome-common"
exit 1
fi
AUTOPOINT=`which autopoint`
if test -z $AUTOPOINT; then
echo "*** No autopoint found, please install it ***"
exit 1
fi
autopoint --force || exit $? autopoint --force || exit $?
AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment