diff options
author | Arnaud Lacombe <lacombar@gmail.com> | 2011-06-07 13:09:28 -0400 |
---|---|---|
committer | Arnaud Lacombe <lacombar@gmail.com> | 2011-06-09 14:04:39 -0400 |
commit | 991d76c950f6c5323c37c33dcebf6b8aec009ff0 (patch) | |
tree | 73922223a42c1d569089808200afeed427a7bdf0 /scripts | |
parent | 7373f4f83c71d50f0aece6d94309ab7fde42180f (diff) |
kbuild: simplify the %_shipped rule
This is needed to have make(1) correctly link the implicit rules which
generate the _shipped file from the lexer/parser to the final file.
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index b0d0c7a189f7..aeea84a24836 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -204,7 +204,7 @@ endif quiet_cmd_shipped = SHIPPED $@ cmd_shipped = cat $< > $@ -$(obj)/%:: $(src)/%_shipped +$(obj)/%: $(src)/%_shipped $(call cmd,shipped) # Commands useful for building a boot image |