diff options
author | Idwer Vollering <vidwer@gmail.com> | 2019-12-16 15:39:00 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2019-12-26 22:06:18 +0000 |
commit | 7abc037da4f173755c7b303b42336b7eb605ae62 (patch) | |
tree | 787db5b8aefcbb919f46273e55ee56152be14aea /util | |
parent | b5b8a7d540aae3bb1facb07792ac7ff93c78f415 (diff) | |
download | coreboot-7abc037da4f173755c7b303b42336b7eb605ae62.tar.gz coreboot-7abc037da4f173755c7b303b42336b7eb605ae62.tar.bz2 coreboot-7abc037da4f173755c7b303b42336b7eb605ae62.zip |
util/superiotool: alter Makefile to build the binary on FreeBSD
Change-Id: Ia96bee18abcdf278ae9178471cd4af2de454facf
Signed-off-by: Idwer Vollering <vidwer@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/37768
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'util')
-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 2bc88aba64f0..32f468366d00 100644 --- a/util/superiotool/Makefile +++ b/util/superiotool/Makefile @@ -103,7 +103,7 @@ export LIBPCI_TEST pciutils: @printf "\nChecking for pciutils and zlib... " @echo "$$LIBPCI_TEST" > .test.c - @$(CC) $(CFLAGS) .test.c -o .test $(LIBS) >/dev/null 2>&1 && \ + @$(CC) $(CFLAGS) .test.c -o .test $(LIBS) $(LDFLAGS) >/dev/null 2>&1 && \ printf "found.\n" || ( printf "not found.\n\n"; \ printf "Please install pciutils-devel and zlib-devel.\n"; \ printf "See README for more information.\n\n"; \ |