summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Buildsystem/makefile.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2013-11-05 22:16:41 -0400
committerJoey Hess <joey@kitenet.net>2013-11-05 22:16:41 -0400
commite1cbf912e56aa6a0104fc47f21515eb5a7525302 (patch)
tree9aa611a71bba3556a0e923a8bd82a4e54096abae /Debian/Debhelper/Buildsystem/makefile.pm
parentce3dc2079ea7dc15d48af6548fb8a90670184b1b (diff)
Fix (horrible) make output parsing code to work with make 4.0. Closes: #728800 Thanks, Julien Pinon
Diffstat (limited to 'Debian/Debhelper/Buildsystem/makefile.pm')
-rw-r--r--Debian/Debhelper/Buildsystem/makefile.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Debian/Debhelper/Buildsystem/makefile.pm b/Debian/Debhelper/Buildsystem/makefile.pm
index dcc5da87..2c68a836 100644
--- a/Debian/Debhelper/Buildsystem/makefile.pm
+++ b/Debian/Debhelper/Buildsystem/makefile.pm
@@ -61,7 +61,7 @@ sub exists_make_target {
return defined $output
&& length $output
- && $output !~ /\*\*\* No rule to make target `\Q$target\E'/;
+ && $output !~ /\*\*\* No rule to make target (`|')\Q$target\E'/;
}
sub do_make {