From ea826d7facabbcd05b8343554acc808275881009 Mon Sep 17 00:00:00 2001 From: Daniel Macks Date: Wed, 6 Jun 2012 22:40:26 -0400 Subject: [PATCH] Fix path to aclocal in output message datadir is defined in terms of datarootdir by default in configure (datadir='${datarootdir}' with ${datarootdir} not expanded), so defining datadir must happen *after* datarootdir is defined in the glib-gettextize shell script. Otherwise ${datarootdir} is null when it is expanded at runtime. https://bugzilla.gnome.org/show_bug.cgi?id=518309 --- glib-gettextize.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glib-gettextize.in b/glib-gettextize.in index 35d01c120..7166cf79c 100644 --- a/glib-gettextize.in +++ b/glib-gettextize.in @@ -49,8 +49,8 @@ MINGW32*) ;; esac -datadir=@datadir@ datarootdir=@datarootdir@ +datadir=@datadir@ gettext_dir=$prefix/share/glib-2.0/gettext