summaryrefslogtreecommitdiff
path: root/scripts/mkmakefile
diff options
context:
space:
mode:
authorJan Beulich <JBeulich@novell.com>2010-08-16 11:58:58 +0100
committerMichal Marek <mmarek@suse.cz>2010-08-17 11:47:40 +0200
commit3c955b407a084810f57260d61548cc92c14bc627 (patch)
tree608ce4c4b5efc5bd2357758063c1b8e9c5ed2113 /scripts/mkmakefile
parent3643f849d7da5c12da589beb03c12303fe79b841 (diff)
fixes for using make 3.82
It doesn't like pattern and explicit rules to be on the same line, and it seems to be more picky when matching file (or really directory) names with different numbers of trailing slashes. Signed-off-by: Jan Beulich <jbeulich@novell.com> Acked-by: Sam Ravnborg <sam@ravnborg.org> Andrew Benton <b3nton@gmail.com> Cc: <stable@kernel.org> Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/mkmakefile')
-rw-r--r--scripts/mkmakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/mkmakefile b/scripts/mkmakefile
index 67d59c7a18dc..5325423ceab4 100644
--- a/scripts/mkmakefile
+++ b/scripts/mkmakefile
@@ -44,7 +44,9 @@ all:
Makefile:;
-\$(all) %/: all
+\$(all): all
@:
+%/: all
+ @:
EOF