diff options
author | jedgar <jedgar@FreeBSD.org> | 2001-03-20 02:54:41 +0000 |
---|---|---|
committer | jedgar <jedgar@FreeBSD.org> | 2001-03-20 02:54:41 +0000 |
commit | 599f08c435ec9d00ea70490087aa2a655d36da01 (patch) | |
tree | 02b4a70c346b583f531db40554bc395993cea6df /bin | |
parent | 3635402b3895ce18ecd10512db8b70cc93907a9c (diff) | |
download | FreeBSD-src-599f08c435ec9d00ea70490087aa2a655d36da01.zip FreeBSD-src-599f08c435ec9d00ea70490087aa2a655d36da01.tar.gz |
Remove extra CFLAGS and redundant SRCS
Add DPADD
Submitted by: bde
Diffstat (limited to 'bin')
-rw-r--r-- | bin/getfacl/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/getfacl/Makefile b/bin/getfacl/Makefile index d6d3cd2..4c2578c 100644 --- a/bin/getfacl/Makefile +++ b/bin/getfacl/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PROG= getfacl -SRCS= getfacl.c LDADD= -lposix1e -CFLAGS+= -g -Wall +DPADD= ${LIBPOSIX1E} .include <bsd.prog.mk> |