diff options
author | jedgar <jedgar@FreeBSD.org> | 2001-03-20 02:55:43 +0000 |
---|---|---|
committer | jedgar <jedgar@FreeBSD.org> | 2001-03-20 02:55:43 +0000 |
commit | 704765dafb15b236d5cf24c9a3b844dc613f5ae8 (patch) | |
tree | 36a719a248fcc7f7418b94485f097c8fc51889d7 /bin/setfacl | |
parent | 599f08c435ec9d00ea70490087aa2a655d36da01 (diff) | |
download | FreeBSD-src-704765dafb15b236d5cf24c9a3b844dc613f5ae8.zip FreeBSD-src-704765dafb15b236d5cf24c9a3b844dc613f5ae8.tar.gz |
Remove extra CFLAGS
Add DPADD
Submitted by: bde
Diffstat (limited to 'bin/setfacl')
-rw-r--r-- | bin/setfacl/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/setfacl/Makefile b/bin/setfacl/Makefile index 4fffeab..6c4f9a9 100644 --- a/bin/setfacl/Makefile +++ b/bin/setfacl/Makefile @@ -1,9 +1,8 @@ # $FreeBSD$ -CFLAGS+= -g ${BDECFLAGS} - PROG= setfacl SRCS= file.c mask.c merge.c remove.c setfacl.c util.c LDADD= -lposix1e +DPADD= ${LIBPOSIX1E} .include <bsd.prog.mk> |