Look up prefix at run-time on Win32, assuming the standard directory
authorTor Lillqvist <tml@novell.com>
Wed, 7 Dec 2005 03:57:14 +0000 (03:57 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Wed, 7 Dec 2005 03:57:14 +0000 (03:57 +0000)
2005-12-07  Tor Lillqvist  <tml@novell.com>

* glib-gettextize.in: Look up prefix at run-time on Win32,
assuming the standard directory structure with glib-gettextize in
$prefix/bin.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
glib-gettextize.in

index dd69b65..7b7f25e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-12-07  Tor Lillqvist  <tml@novell.com>
+
+       * glib-gettextize.in: Look up prefix at run-time on Win32,
+       assuming the standard directory structure with glib-gettextize in
+       $prefix/bin.
+
 2005-12-06  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/gmem.h: Exempt GTK+ from the mem chunk deprecation, since
index dd69b65..7b7f25e 100644 (file)
@@ -1,3 +1,9 @@
+2005-12-07  Tor Lillqvist  <tml@novell.com>
+
+       * glib-gettextize.in: Look up prefix at run-time on Win32,
+       assuming the standard directory structure with glib-gettextize in
+       $prefix/bin.
+
 2005-12-06  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/gmem.h: Exempt GTK+ from the mem chunk deprecation, since
index dd69b65..7b7f25e 100644 (file)
@@ -1,3 +1,9 @@
+2005-12-07  Tor Lillqvist  <tml@novell.com>
+
+       * glib-gettextize.in: Look up prefix at run-time on Win32,
+       assuming the standard directory structure with glib-gettextize in
+       $prefix/bin.
+
 2005-12-06  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/gmem.h: Exempt GTK+ from the mem chunk deprecation, since
index 01ce883..05642d7 100644 (file)
@@ -43,7 +43,13 @@ try_ln_s=:
 
 # Directory where the sources are stored.
 prefix=@prefix@
-gettext_dir=@prefix@/share/glib-2.0/gettext
+case `uname` in
+MINGW32*)
+    prefix="`dirname $0`/.."
+    ;;
+esac
+
+gettext_dir=$prefix/share/glib-2.0/gettext
 
 while test $# -gt 0; do
   case "$1" in