aboutsummaryrefslogtreecommitdiff
path: root/stand/efi
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2018-02-02 15:40:49 +0000
committerWarner Losh <imp@FreeBSD.org>2018-02-02 15:40:49 +0000
commit891b84a3aa1270305e3f1fd41bafad7b5635b348 (patch)
treedff12254802d089bd385c8542835f9b9ac26d451 /stand/efi
parentd958e1323db9b1d2d1d698ce29078a5ce0f7f77d (diff)
downloadsrc-891b84a3aa1270305e3f1fd41bafad7b5635b348.tar.gz
src-891b84a3aa1270305e3f1fd41bafad7b5635b348.zip
Invent new LDR_INTERP for the loader interpreter to use. Use this in
preference to LIBFICL{,32}. LIBFICL{,32} are now always defined, but LDR_INTERP{,32} is defined empty when building w/o forth (aka the simple interpreter) and defined to LIBFICL{,32} when we are building forth.
Notes
Notes: svn path=/head/; revision=328783
Diffstat (limited to 'stand/efi')
-rw-r--r--stand/efi/loader/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/stand/efi/loader/Makefile b/stand/efi/loader/Makefile
index 574cdc00cb4b..57b5600288e7 100644
--- a/stand/efi/loader/Makefile
+++ b/stand/efi/loader/Makefile
@@ -119,8 +119,8 @@ loader.efi: ${PROG}
LIBEFI= ${BOOTOBJ}/efi/libefi/libefi.a
-DPADD= ${LIBFICL} ${LIBEFI} ${LIBFDT} ${LIBEFI_FDT} ${LIBZFSBOOT} ${LIBSA} \
+DPADD= ${LDR_INTERP} ${LIBEFI} ${LIBFDT} ${LIBEFI_FDT} ${LIBZFSBOOT} ${LIBSA} \
${LDSCRIPT}
-LDADD= ${LIBFICL} ${LIBEFI} ${LIBFDT} ${LIBEFI_FDT} ${LIBZFSBOOT} ${LIBSA}
+LDADD= ${LDR_INTERP} ${LIBEFI} ${LIBFDT} ${LIBEFI_FDT} ${LIBZFSBOOT} ${LIBSA}
.include <bsd.prog.mk>