aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-07-22 20:40:05 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-07-22 20:40:05 +0200
commitc1bbba366067f27881195f74cee5d063d1b270b0 (patch)
treea46f6b58ed7624162c9274df3d0f9ec6e8bea50a
parentab29e6d39a7aef254ff0f3f3b2303f50c627c314 (diff)
downloadEpisodeBrowser-c1bbba366067f27881195f74cee5d063d1b270b0.tar.gz
showdeps: Fix GNU make 4.x compatibility.
It seems that the debug output format changed at some point.
-rw-r--r--showdeps2
1 files changed, 1 insertions, 1 deletions
diff --git a/showdeps b/showdeps
index f59aeca..56d355f 100644
--- a/showdeps
+++ b/showdeps
@@ -9,7 +9,7 @@ my %prereqs;
$ENV{LANGUAGE} = "en_US";
for (`make --debug=b -n`) {
- next if not /Prerequisite `([^']+)' is newer than target `([^']+)'/;
+ next if not /Prerequisite [`']([^']+)' is newer than target [`']([^']+)'/;
# Don't consider prerequisites that are targets.
unless ($ARGV[0] and $ARGV[0] eq '-a') {