The following commit has been merged in the master branch:
commit a29c0e70037796f51d767367d33178726c1b5aa6
Author: Guillem Jover <[email protected]>
Date: Sat Sep 26 14:03:07 2009 +0200
build: Properly escape $( inside perl regex
Use one back slash instead of two, otherwise perl was replacing it
with the $( (aka $GID).
Broken due to commit 02f1f8a50af58b9d1f61dd9258cf1d26fe2f0d21.
diff --git a/m4/perl.m4 b/m4/perl.m4
index bde82cb..5a7f0d6 100644
--- a/m4/perl.m4
+++ b/m4/perl.m4
@@ -5,5 +5,5 @@ AC_DEFUN([DPKG_PROG_PERL],
[AC_ARG_VAR([PERL], [Perl interpreter])dnl
AC_PATH_PROG([PERL], [perl], [/usr/bin/perl])dnl
AC_ARG_VAR([PERL_LIBDIR], [Perl library directory])dnl
-PERL_LIBDIR=$($PERL -MConfig -e 'my
$r=$Config{vendorlibexp};$r=~s/$Config{vendorprefixexp}/\\$(prefix)/; print
$r')dnl
+PERL_LIBDIR=$($PERL -MConfig -e 'my
$r=$Config{vendorlibexp};$r=~s/$Config{vendorprefixexp}/\$(prefix)/; print
$r')dnl
])# DPKG_PROG_PERL
--
dpkg's main repository
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]