GNOME Bugzilla – Bug 130591
Linuxisms
Last modified: 2004-12-22 21:47:04 UTC
(Critical because it blocks all other modules.) intltoolize assumes that sh==bash. --- intltoolize.in.~1.17.~ Thu Jan 1 08:06:19 2004 +++ intltoolize.in Mon Jan 5 13:04:06 2004 @@ -245,7 +245,9 @@ done if test ! -d intltool-modules; then - if ! $mkdir intltool-modules; then + if $mkdir intltool-modules; then + echo "$progname: created intltool-modules" 1>&2 + else echo "$progname: unable to create 'intltool-modules' directory" 1>&2 exit 1 fi Also, I think I saw an "mkdir -p" fly by. Won't work in general without gnu mkdir.
Here is another from intltool.m4 if ! `perl -e "require XML::Parser" 2>/dev/null`; then AC_MSG_ERROR([XML::Parser perl module is required for intltool]) fi
please commit - and thanks! the mkdir -p was removed already
Fixed in cvs.