diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2022-08-03 18:59:28 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2022-11-02 09:36:19 +0000 |
commit | 0ed86bcc0b2adca5aad1446720799f6fdddb8dd7 (patch) | |
tree | eab1bea1bf05d8d9b3a7973a3e462cae51c32267 /usr.bin/xinstall/Makefile | |
parent | 540add272df643f53e1bd7786c6eee75fda5317b (diff) |
xinstall: fix dounpriv logic, add tests
Sponsored by: Klara, Inc.
MFC after: 1 week
(cherry picked from commit 36d67475f5497664d33c41c2f6745dcb30b0ec42)
xinstall: make md5 and ripemd160 conditional
Sponsored by: Klara, Inc.
(cherry picked from commit c7a8e8d372b212c97dde6ce2731db27aa0b2201c)
xinstall: use dynamic bufsize as in cat(1) / cp(1).
Sponsored by: Klara, Inc.
(cherry picked from commit 54d8d0fe12a4996427923048ab4261819774fbd4)
xinstall: alphabetize: upper case precedes lower.
Sponsored by: Klara, Inc.
(cherry picked from commit f44e2577120c60cd92f685037bbb63127e0091e4)
Diffstat (limited to 'usr.bin/xinstall/Makefile')
-rw-r--r-- | usr.bin/xinstall/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/xinstall/Makefile b/usr.bin/xinstall/Makefile index ce70cb882190..9969ef104e98 100644 --- a/usr.bin/xinstall/Makefile +++ b/usr.bin/xinstall/Makefile @@ -14,7 +14,8 @@ MAN= install.1 CFLAGS+= -I${SRCTOP}/contrib/mtree CFLAGS+= -I${SRCTOP}/lib/libnetbsd -LIBADD= md +LIBADD= md +CFLAGS+= -DWITH_MD5 -DWITH_RIPEMD160 HAS_TESTS= SUBDIR.${MK_TESTS}+= tests |