superiotool: Fix for FreeBSD
Makefile still used SVNDEF on FreeBSD. Change-Id: I45c7fbc66c33e82a2146ef7df87b63bc7edea4cd Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/1554 Tested-by: build bot (Jenkins) Reviewed-by: Anton Kochkov <anton.kochkov@gmail.com>
This commit is contained in:
parent
d2cb7ea1ff
commit
89397fc342
|
@ -41,7 +41,7 @@ LIBS = -framework IOKit -framework DirectHW -lpci -lz
|
||||||
endif
|
endif
|
||||||
ifeq ($(OS_ARCH), FreeBSD)
|
ifeq ($(OS_ARCH), FreeBSD)
|
||||||
CFLAGS = -O2 -Wall -Werror -Wstrict-prototypes -Wundef -Wstrict-aliasing \
|
CFLAGS = -O2 -Wall -Werror -Wstrict-prototypes -Wundef -Wstrict-aliasing \
|
||||||
-Werror-implicit-function-declaration -ansi $(SVNDEF) \
|
-Werror-implicit-function-declaration -ansi $(VERSION) \
|
||||||
-I/usr/local/include
|
-I/usr/local/include
|
||||||
LDFLAGS += -L/usr/local/lib
|
LDFLAGS += -L/usr/local/lib
|
||||||
LIBS = -lz
|
LIBS = -lz
|
||||||
|
|
Loading…
Reference in New Issue