diff options
author | Andriy Gapon <avg@FreeBSD.org> | 2012-10-03 08:19:34 +0200 |
---|---|---|
committer | Anton Kochkov <anton.kochkov@gmail.com> | 2012-10-03 09:26:59 +0200 |
commit | 89397fc342c7bf9005e68e28ab898c81b7fc2a66 (patch) | |
tree | d5637a73fe2c00a9d7fd2df2c960a0902d89aceb | |
parent | d2cb7ea1ff2bef2e4b54d12a295abf2fd76ebd9a (diff) |
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>
-rw-r--r-- | util/superiotool/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/superiotool/Makefile b/util/superiotool/Makefile index 41625d31d1..2388f4ea07 100644 --- a/util/superiotool/Makefile +++ b/util/superiotool/Makefile @@ -41,7 +41,7 @@ LIBS = -framework IOKit -framework DirectHW -lpci -lz endif ifeq ($(OS_ARCH), FreeBSD) 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 LDFLAGS += -L/usr/local/lib LIBS = -lz |