diff options
author | John Ankarström <john@ankarstrom.se> | 2022-07-22 20:40:05 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-07-22 20:40:05 +0200 |
commit | c1bbba366067f27881195f74cee5d063d1b270b0 (patch) | |
tree | a46f6b58ed7624162c9274df3d0f9ec6e8bea50a | |
parent | ab29e6d39a7aef254ff0f3f3b2303f50c627c314 (diff) | |
download | EpisodeBrowser-c1bbba366067f27881195f74cee5d063d1b270b0.tar.gz |
showdeps: Fix GNU make 4.x compatibility.
It seems that the debug output format changed at some point.
-rw-r--r-- | showdeps | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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') { |