summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanilo Segan <danilo@canonical.com>2011-10-08 08:20:37 +0200
committerDanilo Segan <danilo@canonical.com>2011-10-08 08:20:37 +0200
commit44a49f91913944fbd55f758dba5ef509c2405239 (patch)
treee5c169bbab71e183f4b73b88c23c2a1c09cce996
parent66c016a36396c15ce10389debff5d239a5072a30 (diff)
downloadintltool-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.m42
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