diff options
author | Danilo Segan <danilo@canonical.com> | 2011-10-08 08:20:37 +0200 |
---|---|---|
committer | Danilo Segan <danilo@canonical.com> | 2011-10-08 08:20:37 +0200 |
commit | 44a49f91913944fbd55f758dba5ef509c2405239 (patch) | |
tree | e5c169bbab71e183f4b73b88c23c2a1c09cce996 | |
parent | 66c016a36396c15ce10389debff5d239a5072a30 (diff) | |
download | intltool-44a49f91913944fbd55f758dba5ef509c2405239.tar.gz |
Reduce the amount of quoting when finding the Perl version number, as proposed in bug 639857 by naddy mips inka de.
-rw-r--r-- | intltool.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/intltool.m4 b/intltool.m4 index 839e855..a22d122 100644 --- a/intltool.m4 +++ b/intltool.m4 @@ -119,7 +119,7 @@ $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 if test $? -ne 0; then AC_MSG_ERROR([perl 5.8.1 is required for intltool]) else - IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`" + IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"` AC_MSG_RESULT([$IT_PERL_VERSION]) fi if test "x$2" != "xno-xml"; then |