diff options
author | ru <ru@FreeBSD.org> | 2010-02-26 09:41:16 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2010-02-26 09:41:16 +0000 |
commit | 7cea019b6c848c2a46107e397d0ec945e0f1be58 (patch) | |
tree | 8eb3d2832697fff768756673ff76ad3b8b33d2ea /usr.sbin/boot0cfg/Makefile | |
parent | d90e3329466e3deb12cb3e10da1c30383f52d1b9 (diff) | |
download | FreeBSD-src-7cea019b6c848c2a46107e397d0ec945e0f1be58.zip FreeBSD-src-7cea019b6c848c2a46107e397d0ec945e0f1be58.tar.gz |
Fixed static linkage.
Diffstat (limited to 'usr.sbin/boot0cfg/Makefile')
-rw-r--r-- | usr.sbin/boot0cfg/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/boot0cfg/Makefile b/usr.sbin/boot0cfg/Makefile index 79e7cd2..9b46701 100644 --- a/usr.sbin/boot0cfg/Makefile +++ b/usr.sbin/boot0cfg/Makefile @@ -3,7 +3,7 @@ PROG= boot0cfg MAN= boot0cfg.8 -DPADD= ${LIBGEOM} -LDADD= -lgeom +DPADD= ${LIBGEOM} ${LIBBSDXML} ${LIBSBUF} +LDADD= -lgeom -lbsdxml -lsbuf .include <bsd.prog.mk> |