diff options
author | Warner Losh <imp@FreeBSD.org> | 2017-10-09 22:11:57 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2017-10-09 22:11:57 +0000 |
commit | 6a971c173266ad15410557184195ea1bd681ab20 (patch) | |
tree | d3fcf7f2e4198b70018a2cf02c7db7f91c392f87 /sys/boot/efi/boot1/Makefile | |
parent | 9c82bec42d59077605b043b44f44babb10e7d1bb (diff) |
Prefer ${LIBSTAND} to -lstand
Sponsored by: Netflix
Notes
Notes:
svn path=/head/; revision=324449
Diffstat (limited to 'sys/boot/efi/boot1/Makefile')
-rw-r--r-- | sys/boot/efi/boot1/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/efi/boot1/Makefile b/sys/boot/efi/boot1/Makefile index 189ab6aaca69..b659dd0575e6 100644 --- a/sys/boot/efi/boot1/Makefile +++ b/sys/boot/efi/boot1/Makefile @@ -91,7 +91,7 @@ LIBEFI= ${.OBJDIR}/../libefi/libefi.a # as well as required string and memory functions for all platforms. # DPADD+= ${LIBEFI} ${LIBSTAND} -LDADD+= ${LIBEFI} -lstand +LDADD+= ${LIBEFI} ${LIBSTAND} DPADD+= ${LDSCRIPT} |