diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2008-08-01 18:58:36 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-08-02 02:52:29 -0400 |
commit | 759da9267177e5005c8f21e11d29d26f4f459744 (patch) | |
tree | 75f8f0eee78c8a215f9bfe529a1b34f2383a2f28 /scripts/Makefile.fwinst | |
parent | 2b12a4c524812fb3f6ee590a02e65b95c8c32229 (diff) |
firmware: silence __fw_modbuild and __fw_modinst 'Nothing to be done' messages
People don't like them and think they're errors.
Leave the __fw_install one though; when 'make firmware_install' does
nothing, it's best to have a 'Nothing to be done for...' message rather
than just doing nothing.
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'scripts/Makefile.fwinst')
-rw-r--r-- | scripts/Makefile.fwinst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/Makefile.fwinst b/scripts/Makefile.fwinst index f63a663de158..6bf8e87f1dcf 100644 --- a/scripts/Makefile.fwinst +++ b/scripts/Makefile.fwinst | |||
@@ -50,8 +50,12 @@ PHONY += __fw_install __fw_modinst FORCE | |||
50 | .PHONY: $(PHONY) | 50 | .PHONY: $(PHONY) |
51 | 51 | ||
52 | __fw_install: $(installed-fw) | 52 | __fw_install: $(installed-fw) |
53 | |||
53 | __fw_modinst: $(installed-mod-fw) | 54 | __fw_modinst: $(installed-mod-fw) |
55 | @: | ||
56 | |||
54 | __fw_modbuild: $(addprefix $(obj)/,$(mod-fw)) | 57 | __fw_modbuild: $(addprefix $(obj)/,$(mod-fw)) |
58 | @: | ||
55 | 59 | ||
56 | FORCE: | 60 | FORCE: |
57 | 61 | ||