diff options
author | John Birrell <jb@FreeBSD.org> | 2007-11-20 02:07:30 +0000 |
---|---|---|
committer | John Birrell <jb@FreeBSD.org> | 2007-11-20 02:07:30 +0000 |
commit | 0aad0f22823b98aa97aa9ae4bccb63a2a2ef3d5a (patch) | |
tree | c738c1fa5da607c325a8355cce50ee176ba703ca /usr.sbin/rpc.yppasswdd | |
parent | 3ad1a3ea6918189d408bf15aef42fe98d0e5b503 (diff) |
These are the things that the tinderbox has problems with because it
doesn't use the default CFLAGS which contain -fno-strict-aliasing.
Until the code is cleaned up, just add -fno-strict-aliasing to the
CFLAGS of these for the tinderboxes' sake, allowing the rest of the
tree to have -Werror enabled again.
Notes
Notes:
svn path=/head/; revision=173766
Diffstat (limited to 'usr.sbin/rpc.yppasswdd')
-rw-r--r-- | usr.sbin/rpc.yppasswdd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.sbin/rpc.yppasswdd/Makefile b/usr.sbin/rpc.yppasswdd/Makefile index 1b76da46de89..bbd2658bafdd 100644 --- a/usr.sbin/rpc.yppasswdd/Makefile +++ b/usr.sbin/rpc.yppasswdd/Makefile @@ -15,6 +15,7 @@ GENSRCS=yp.h yp_clnt.c yppasswd.h yppasswd_private.h yppasswd_private_svc.c \ yppasswd_private_xdr.c yppasswd_svc.c WARNS?= 4 +CFLAGS+= -fno-strict-aliasing CFLAGS+= -I${.CURDIR}/../../usr.sbin/vipw \ -I${.CURDIR}/../../usr.sbin/ypserv \ -I${.CURDIR}/../../libexec/ypxfr \ |