diff options
author | hrs <hrs@FreeBSD.org> | 2013-02-14 08:32:07 +0000 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2013-02-14 08:32:07 +0000 |
commit | af9a6b59013c48aa503513ce55d93fe84817996a (patch) | |
tree | c2583c9ae8e9c3015fefef75ac0c2e5026ab3283 /usr.bin | |
parent | 8426ce9b0af88e9ddadfb8a5ed2ae5f188d6d148 (diff) | |
download | FreeBSD-src-af9a6b59013c48aa503513ce55d93fe84817996a.zip FreeBSD-src-af9a6b59013c48aa503513ce55d93fe84817996a.tar.gz |
- Fix libmd dependency. It is needed in the bootstrap library list because
usr.bin/xinstall depends on it.
- Remove libutil from usr.bin/xinstall/Makefile. No symbol was actually used.
Reviewed by: brooks
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/xinstall/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/xinstall/Makefile b/usr.bin/xinstall/Makefile index d9d5873..773dd4e 100644 --- a/usr.bin/xinstall/Makefile +++ b/usr.bin/xinstall/Makefile @@ -7,10 +7,12 @@ SRCS= xinstall.c getid.c MAN= install.1 .PATH: ${.CURDIR}/../../contrib/mtree +.PATH: ${.CURDIR}/../../lib/libmd CFLAGS+= -I${.CURDIR}/../../contrib/mtree CFLAGS+= -I${.CURDIR}/../../lib/libnetbsd +CFLAGS+= -I${.CURDIR}/../../lib/libmd -DPADD+= ${LIBUTIL} ${LIBMD} -LDADD+= -lutil -lmd +DPADD+= ${LIBMD} +LDADD+= -lmd .include <bsd.prog.mk> |