Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSayamindu Dasgupta <sayamindu@gmail.com>2008-06-24 17:53:59 (GMT)
committer Sayamindu Dasgupta <sayamindu@gmail.com>2008-06-24 17:53:59 (GMT)
commitcd2f415ad63021dea9f7dc87e7613fc53a6aa15d (patch)
tree45bacc236acc5dbf8046ff70c49b3b9ff3435131
parent8ab156872b97e310c77ff8dd12578615f35efaaa (diff)
Fix the i18n support
-rw-r--r--Makefile.am12
-rwxr-xr-xautogen.sh1
-rw-r--r--configure.ac1
3 files changed, 13 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index f8238b2..b62b8cc 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,3 +1,13 @@
ACLOCAL_AMFLAGS = -I m4
-SUBDIRS = src
+DISTCLEANFILES = \
+ intltool-extract \
+ intltool-merge \
+ intltool-update
+
+EXTRA_DIST = \
+ intltool-merge.in \
+ intltool-update.in \
+ intltool-extract.in
+
+SUBDIRS = src po
diff --git a/autogen.sh b/autogen.sh
index 1cd5db4..3d12f8f 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,5 +1,6 @@
#!/bin/sh
export ACLOCAL="aclocal -I m4"
+intltoolize
autoreconf -i
./configure "$@"
diff --git a/configure.ac b/configure.ac
index 4a12603..5f052a2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -30,4 +30,5 @@ AC_OUTPUT([
Makefile
src/Makefile
src/sugar/Makefile
+po/Makefile.in
])