From: Arnaud Lacombe Date: Tue, 7 Jun 2011 17:09:28 +0000 (-0400) Subject: kbuild: simplify the %_shipped rule X-Git-Tag: firefly_0821_release~3680^2~4934^2~4^2~11 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=991d76c950f6c5323c37c33dcebf6b8aec009ff0;p=firefly-linux-kernel-4.4.55.git 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 --- 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