summaryrefslogtreecommitdiff
path: root/scripts/mkmakefile
diff options
context:
space:
mode:
authorJan Beulich <JBeulich@novell.com>2010-08-16 10:58:58 (GMT)
committerMichal Marek <mmarek@suse.cz>2010-08-17 09:47:40 (GMT)
commit3c955b407a084810f57260d61548cc92c14bc627 (patch)
tree608ce4c4b5efc5bd2357758063c1b8e9c5ed2113 /scripts/mkmakefile
parent3643f849d7da5c12da589beb03c12303fe79b841 (diff)
downloadlinux-fsl-qoriq-3c955b407a084810f57260d61548cc92c14bc627.tar.xz
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 67d59c7..5325423 100644
--- a/scripts/mkmakefile
+++ b/scripts/mkmakefile
@@ -44,7 +44,9 @@ all:
Makefile:;
-\$(all) %/: all
+\$(all): all
@:
+%/: all
+ @:
EOF