search for: install_aux_opt

Displaying 3 results from an estimated 3 matches for "install_aux_opt".

2010 May 29
2
Syslinux doesn't compile on Mandriva Linux - fixed
...ed with win32 in mind. Best Regards, Steve --- Makefile.orig 2010-05-29 11:12:37.000000000 +0100 +++ Makefile 2010-05-29 11:17:16.000000000 +0100 @@ -19,6 +19,15 @@ include $(topdir)/MCONFIG -include $(topdir)/version.mk # +# Build win32 applications for win32 platforms only +# +ifdef WIN32 +INSTALL_AUX_OPT = win32/syslinux.exe +else +INSTALL_AUX_OPT = +endif + +# # The BTARGET refers to objects that are derived from ldlinux.asm; we # like to keep those uniform for debugging reasons; however, distributors # want to recompile the installers (ITARGET). @@ -43,7 +52,7 @@ BOBJECTS = $(BTARGET) \ mbr/...
2010 Jan 19
0
[PATCH] Makefile: don't fail during make install on non mingw platforms
"make install" fails on non mingw platform because "win32/syslinux.exe" isn't build. This patch removes "win32/syslinux.exe" from the "INSTALL_AUX" variable. It's already part of "INSTALL_AUX_OPT" allowing the installation to fail. Signed-off-by: Marc Kleine-Budde <mkl at pengutronix.de> --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index d0f5e71..f429e8c 100644 --- a/Makefile +++ b/Makefile @@ -67,7 +67,7 @@ INSTALL_...
2012 Oct 19
3
[PATCH 0/3] elflink fixes
From: Matt Fleming <matt.fleming at intel.com> The first two patches in this series are fixes for bugs reported by someone in #syslinux. The third makes dmitest.c32 actually wait for user input. If no one has any objections/concerns, I'll pull this into the official elflink branch. Matt Fleming (3): core: Print error message if we don't load ldlinux.c32 Clean up $(GPLLIB) leak