diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-05-02 19:10:31 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-03 21:37:48 +0200 |
commit | 7a2b94acf8d4131c12fac922b1b9ae2b8b486f1c (patch) | |
tree | 957bc3006145489eed4993410c53567d817345bb | |
parent | 09548e41cb8f4f6092ad76173be1d47ae586da8b (diff) | |
download | buildroot-7a2b94acf8d4131c12fac922b1b9ae2b8b486f1c.tar.gz buildroot-7a2b94acf8d4131c12fac922b1b9ae2b8b486f1c.zip |
boot/syslinux: move comments out of define-block
The comments are not really part of the command we want to execute,
so move them out of the define-block. This also cleans up the output,
as they will no longer appear.
Reported-by: Arnout Vandecappelle <arnout@mind.be>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | boot/syslinux/syslinux.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boot/syslinux/syslinux.mk b/boot/syslinux/syslinux.mk index a1eb394018..ee71a0a216 100644 --- a/boot/syslinux/syslinux.mk +++ b/boot/syslinux/syslinux.mk @@ -22,9 +22,9 @@ define SYSLINUX_BUILD_CMDS $(TARGET_MAKE_ENV) $(MAKE) CC="$(HOSTCC) -idirafter $(HOST_DIR)/usr/include $(HOST_LDFLAGS)" AR="$(HOSTAR)" -C $(@D) endef +# While the actual bootloader is compiled for the target, several +# utilities for installing the bootloader are meant for the host. define SYSLINUX_INSTALL_TARGET_CMDS - # While the actual bootloader is compiled for the target, several - # utilities for installing the bootloader are meant for the host. $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) INSTALLROOT=$(HOST_DIR) install endef |