summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--intltoolize.in3
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1a96ec9..a8906e6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2006-05-16 Rodney Dawes <dobey@novell.com>
+
+ * intltoolize.in: Change the warning message for a missing call to
+ IT_PROG_INTLTOOL in configure.{in,ac} to a more appropriate error,
+ and exit with a return value of 1 if it is not present
+
+ Fixes #341985
+
2006-05-15 Rodney Dawes <dobey@novell.com>
* NEWS:
diff --git a/intltoolize.in b/intltoolize.in
index f919131..634899a 100644
--- a/intltoolize.in
+++ b/intltoolize.in
@@ -192,7 +192,8 @@ fi
if test -z "$automake"; then
if egrep '^(AC|IT)_PROG_INTLTOOL' $configure >/dev/null 2>&1; then :
else
- echo "Remember to add 'IT_PROG_INTLTOOL' to $configure."
+ echo "ERROR: 'IT_PROG_INTLTOOL' must appear in $configure for intltool to work."
+ exit 1
fi
if grep 'generated automatically by aclocal' aclocal.m4 >/dev/null 2>&1; then