aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2004-01-17 02:27:55 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2004-01-17 02:27:55 +0000
commit6c6b4e5dcd8a7273dd4153b8ee885f4b35a5df1b (patch)
tree5700fc0381adaca3254ddc40b642c73759aad4cd /usr.sbin
parent5151e7223e44353134998acf9027aa8f482c7864 (diff)
downloadsrc-6c6b4e5dcd8a7273dd4153b8ee885f4b35a5df1b.tar.gz
src-6c6b4e5dcd8a7273dd4153b8ee885f4b35a5df1b.zip
Fixed the fatal bug: CFLAGS should be added to, not overridden.
This prevented CPU and optimization flags to be added here.
Notes
Notes: svn path=/head/; revision=124604
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/faithd/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/faithd/Makefile b/usr.sbin/faithd/Makefile
index 3d663b850e1b..e1898ed333a4 100644
--- a/usr.sbin/faithd/Makefile
+++ b/usr.sbin/faithd/Makefile
@@ -18,6 +18,6 @@ PROG= faithd
MAN= faithd.8
SRCS= faithd.c tcp.c ftp.c prefix.c
-CFLAGS= -DHAVE_POLL_H
+CFLAGS+= -DHAVE_POLL_H
.include <bsd.prog.mk>