diff options
author | Hiroki Sato <hrs@FreeBSD.org> | 2013-02-14 08:32:07 +0000 |
---|---|---|
committer | Hiroki Sato <hrs@FreeBSD.org> | 2013-02-14 08:32:07 +0000 |
commit | 0af99eef9e4d3c463ece2da2342499cd5b55b8ab (patch) | |
tree | c2583c9ae8e9c3015fefef75ac0c2e5026ab3283 /usr.bin/xinstall/Makefile | |
parent | af2637db52bc5520a60ae6cb276c792a5ebe8073 (diff) |
- 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
Notes
Notes:
svn path=/head/; revision=246784
Diffstat (limited to 'usr.bin/xinstall/Makefile')
-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 d9d587302c0c..773dd4ef8778 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> |