aboutsummaryrefslogtreecommitdiff
path: root/makedeps
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-07-17 00:21:28 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-07-17 00:21:28 +0200
commit605a3ff052defc3e41542204b0579e528d81ad72 (patch)
treed5db97837589ebbe5d951a9818915835efea5b1f /makedeps
parent54570cbc0d6e4798ad47a9db2e726372cfc13297 (diff)
downloadEpisodeBrowser-605a3ff052defc3e41542204b0579e528d81ad72.tar.gz
makedeps: Fix regular expression.
Diffstat (limited to 'makedeps')
-rw-r--r--makedeps2
1 files changed, 1 insertions, 1 deletions
diff --git a/makedeps b/makedeps
index 79c392e..829d389 100644
--- a/makedeps
+++ b/makedeps
@@ -17,7 +17,7 @@ while (my $f = glob("c/*.cpp")) {
while ($_ = <$gh>) {
next if /^$/;
goto n if not /#/;
- print $fh " c/$1" if /^#include\s+"([^"]+)"/;
+ print $fh " c/$1" if /^#include\s*"([^"]+)"/;
}
n:
print $fh "\n";