From 9c0f1e3384ede0c83c834ed0e8c57435223c57a1 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Thu, 9 Oct 2008 12:03:25 -0700 Subject: [PATCH] gPXE: build with NO_WERROR=1 -Werror is great for development, but is really bad for production where one may encounter a number of different toolchains. This causes diagnostic warnings to get promoted to build failures. Signed-off-by: H. Peter Anvin --- gpxe/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpxe/Makefile b/gpxe/Makefile index 09e03d9..c846e93 100644 --- a/gpxe/Makefile +++ b/gpxe/Makefile @@ -33,7 +33,7 @@ spotless: clean dist installer: src/bin/undionly.kpxe: ../core/pxelinux.0 - $(MAKE) -C src EMBEDDED_IMAGE=../$< bin/undionly.kpxe + $(MAKE) -C src EMBEDDED_IMAGE=../$< NO_WERROR=1 bin/undionly.kpxe gpxelinux.0: src/bin/undionly.kpxe cp -f $< $@ -- 2.7.4