diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2013-01-18 20:57:50 +0000 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2013-01-18 20:57:50 +0000 |
commit | f2b19f9ecea77c8464643e5e48c3ddae94a4b31f (patch) | |
tree | 4bd6bb397a57c2b45721a9f7a94eeb1d1bb097cb /usr.bin/xinstall/Makefile | |
parent | e4558aacfc729ea5c53917661e78c3dd58bf84ca (diff) |
Introduce six new options from NetBSD:
* -M <metalog> Log metadata in mtree format.
* -D <destdir> Log paths relative to <destdir>.
* -h <hash> Log digest of type <hash>.
* -T <tags> Specify which mtree tags to log.
* -l <linkflag> Create hard or symbolic links (allows logging).
* -U Install without root privileges (owner, group, mode,
and flags can be logged via -M
NOTE: In the interest of compatibility with NetBSD and because it is the
obvious letter, the nearly useless -M option (disable mmap) has been
repurposed.
Sponsored by: DARPA, AFRL
Obtained from: NetBSD
Reviewed by: bz
Notes
Notes:
svn path=/head/; revision=245617
Diffstat (limited to 'usr.bin/xinstall/Makefile')
-rw-r--r-- | usr.bin/xinstall/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/xinstall/Makefile b/usr.bin/xinstall/Makefile index 2a2aace938c8..d9d587302c0c 100644 --- a/usr.bin/xinstall/Makefile +++ b/usr.bin/xinstall/Makefile @@ -10,7 +10,7 @@ MAN= install.1 CFLAGS+= -I${.CURDIR}/../../contrib/mtree CFLAGS+= -I${.CURDIR}/../../lib/libnetbsd -DPADD+= ${LIBUTIL} -LDADD+= -lutil +DPADD+= ${LIBUTIL} ${LIBMD} +LDADD+= -lutil -lmd .include <bsd.prog.mk> |