summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pkg_install/add/Makefile
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2002-06-12 12:45:24 +0000
committerdes <des@FreeBSD.org>2002-06-12 12:45:24 +0000
commit1b240720511248ff607e12629adb7c2cd41c74a6 (patch)
tree84862c3fb33281e349bdc0a886d4d71af5058964 /usr.sbin/pkg_install/add/Makefile
parente39b056b5de4e0d64c4f5c3b4bfb11064143ecf0 (diff)
downloadFreeBSD-src-1b240720511248ff607e12629adb7c2cd41c74a6.zip
FreeBSD-src-1b240720511248ff607e12629adb7c2cd41c74a6.tar.gz
Reorder libraries to fix static linking (libssl depends on libcrypto, so
it must come before libcrypto in LDADD) Reviewed by: bde
Diffstat (limited to 'usr.sbin/pkg_install/add/Makefile')
-rw-r--r--usr.sbin/pkg_install/add/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_install/add/Makefile b/usr.sbin/pkg_install/add/Makefile
index 5903eaa..6788852 100644
--- a/usr.sbin/pkg_install/add/Makefile
+++ b/usr.sbin/pkg_install/add/Makefile
@@ -11,8 +11,8 @@ DPADD= ${LIBINSTALL} ${LIBFETCH} ${LIBMD}
LDADD= ${LIBINSTALL} -lfetch -lmd
.if !defined(NOCRYPT) && !defined(NOSECURE) && !defined(NO_OPENSSL)
-DPADD+= ${LIBCRYPTO} ${LIBSSL}
-LDADD+= -lcrypto -lssl
+DPADD+= ${LIBSSL} ${LIBCRYPTO}
+LDADD+= -lssl -lcrypto
.endif
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud