Module: tools Branch: master Commit: feb0dc10fb095d48d231542682217d1c1bf83d0f URL: http://source.winehq.org/git/tools.git/?a=commit;h=feb0dc10fb095d48d23154268...
Author: Mikolaj Zalewski mikolajz@tygrys.dom Date: Thu Jun 5 23:05:48 2008 +0200
there may be no space between RC_SRCS and =
---
scripts/checkmakefile.pl | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/checkmakefile.pl b/scripts/checkmakefile.pl index cc5064f..c13c31f 100755 --- a/scripts/checkmakefile.pl +++ b/scripts/checkmakefile.pl @@ -113,7 +113,7 @@ $ARGV[0] =~ m,^(.*/)[^/]*$,; $path = $1; while (<MAKEFILE>) { - if (m/^RC_SRCS +=/) + if (m/^RC_SRCS *=/) { while (m/\$/) { @@ -121,7 +121,7 @@ while (<MAKEFILE>) chop; $_ .= <MAKEFILE>; } - m/^RC_SRCS += (.*)$/; + m/^RC_SRCS *=(.*)$/; @file = split(/ /, $1); foreach (@file) {