diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-03-12 14:15:23 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-03-12 14:15:23 -0700 |
commit | a270ddcffcd9e132e1b0a267c5371cd4138f333b (patch) | |
tree | f7f8c9e901689ca5e111b1ee9a961f19dc87d411 | |
parent | 016bf23cbffd07db1cf9a0020a618667acae38c5 (diff) | |
download | syslinux-elf-a270ddcffcd9e132e1b0a267c5371cd4138f333b.tar.gz syslinux-elf-a270ddcffcd9e132e1b0a267c5371cd4138f333b.tar.xz syslinux-elf-a270ddcffcd9e132e1b0a267c5371cd4138f333b.zip |
gpllib: fix the NOGPL logic
Fix the logic for when we should be enabling the GPL library.
-rw-r--r-- | com32/MCONFIG | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/MCONFIG b/com32/MCONFIG index cf5334b3..22f5b8fc 100644 --- a/com32/MCONFIG +++ b/com32/MCONFIG @@ -23,7 +23,7 @@ GCCOPT := $(call gcc_ok,-std=gnu99,) \ com32 = $(topdir)/com32 -ifeq ($(NOGPL),1) +ifneq ($(NOGPL),1) GPLLIB = $(com32)/libcom32gpl.a GPLINCLUDE = -I$(com32)/gplinclude else |