diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-07-08 16:09:35 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-07-08 16:09:35 +0000 |
commit | cd8ea8cdc894d70ddf43571501e038680691c29c (patch) | |
tree | 131fdbf8f5d79b1b82f9788eabc1069103107d4c /usr.bin/find/Makefile | |
parent | c5a66fdd2a472878fb5f7aee24ce086c099c6cc4 (diff) |
Add a -flags option similar to -perm but for filke flags (ala
chflags). Adapted from FreeBSD.
Diffstat (limited to 'usr.bin/find/Makefile')
-rw-r--r-- | usr.bin/find/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/find/Makefile b/usr.bin/find/Makefile index 6bc22ee35c7..db331cd2a13 100644 --- a/usr.bin/find/Makefile +++ b/usr.bin/find/Makefile @@ -1,6 +1,7 @@ -# $OpenBSD: Makefile,v 1.2 1996/06/26 05:33:07 deraadt Exp $ +# $OpenBSD: Makefile,v 1.3 2000/07/08 16:09:33 millert Exp $ PROG= find -SRCS= find.c function.c ls.c main.c misc.c operator.c option.c +SRCS= find.c function.c ls.c main.c misc.c operator.c option.c stat_flags.c +.PATH: ${.CURDIR}/../../bin/ls .include <bsd.prog.mk> |