aboutsummaryrefslogtreecommitdiff
path: root/stand/i386/loader/Makefile
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2018-06-18 16:24:42 +0000
committerWarner Losh <imp@FreeBSD.org>2018-06-18 16:24:42 +0000
commit62bd02cee5752592d6f284a61759fb398a3ea8ff (patch)
tree32eedb3a151d0f460a2aa131e69f5c53b43dcc03 /stand/i386/loader/Makefile
parentff150bea297adebe1aa532894006b56b8af1c749 (diff)
downloadsrc-62bd02cee5752592d6f284a61759fb398a3ea8ff.tar.gz
src-62bd02cee5752592d6f284a61759fb398a3ea8ff.zip
stand: move libgeliboot into libsa.
Reduce by 1 the number of crazy libraries we need in stand by moving geli into libsa (where architecturally it belonged all along). This just moves things around without any code changes.
Notes
Notes: svn path=/head/; revision=335321
Diffstat (limited to 'stand/i386/loader/Makefile')
-rw-r--r--stand/i386/loader/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/stand/i386/loader/Makefile b/stand/i386/loader/Makefile
index ac30415dfd7f..f34831466720 100644
--- a/stand/i386/loader/Makefile
+++ b/stand/i386/loader/Makefile
@@ -71,8 +71,8 @@ FILESMODE_${LOADER}= ${BINMODE} -b
# XXX crt0.o needs to be first for pxeboot(8) to work
OBJS= ${BTXCRT}
-DPADD= ${LDR_INTERP32} ${LIBFIREWIRE} ${LIBZFSBOOT} ${LIBI386} ${LIBGELIBOOT} ${LIBSA32}
-LDADD= ${LDR_INTERP32} ${LIBFIREWIRE} ${LIBZFSBOOT} ${LIBI386} ${LIBGELIBOOT} ${LIBSA32}
+DPADD= ${LDR_INTERP32} ${LIBFIREWIRE} ${LIBZFSBOOT} ${LIBI386} ${LIBSA32}
+LDADD= ${LDR_INTERP32} ${LIBFIREWIRE} ${LIBZFSBOOT} ${LIBI386} ${LIBSA32}
.if ${MACHINE_CPUARCH} == "amd64"
CFLAGS+= -DLOADER_PREFER_AMD64