From: Michael Brown Date: Wed, 16 Mar 2011 14:06:46 +0000 (+0000) Subject: [build] Avoid rebuilding keymap files automatically X-Git-Tag: v1.20.1~2243 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b68dc78b9e32dccc7c8a51f9460c6ffc63195a5;p=thirdparty%2Fipxe.git [build] Avoid rebuilding keymap files automatically The keymap files, though autogenerated, are checked in to version control and should be considered as source files. They should never be automatically rebuilt. Signed-off-by: Michael Brown --- diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping index 39b0aa250..709f8de1f 100644 --- a/src/Makefile.housekeeping +++ b/src/Makefile.housekeeping @@ -1090,7 +1090,7 @@ endif # defined(BIN) # Keyboard maps # -hci/keymap/keymap_%.c : $(GENKEYMAP) +hci/keymap/keymap_%.c : $(Q)$(PERL) $(GENKEYMAP) $* > $@ ###############################################################################