diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-10-09 12:03:25 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-10-09 12:03:25 -0700 |
commit | 9c0f1e3384ede0c83c834ed0e8c57435223c57a1 (patch) | |
tree | 98aa4791c5aa386e620a80864c53d532e38e660f /gpxe | |
parent | a40e933b79efe6349151092b3080d2547a9f69b9 (diff) | |
download | syslinux-elf-9c0f1e3384ede0c83c834ed0e8c57435223c57a1.tar.gz syslinux-elf-9c0f1e3384ede0c83c834ed0e8c57435223c57a1.tar.xz syslinux-elf-9c0f1e3384ede0c83c834ed0e8c57435223c57a1.zip |
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 <hpa@zytor.com>
Diffstat (limited to 'gpxe')
-rw-r--r-- | gpxe/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gpxe/Makefile b/gpxe/Makefile index 09e03d9d..c846e939 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 $< $@ |