summaryrefslogtreecommitdiffstats
path: root/sbin/ping
diff options
context:
space:
mode:
authordd <dd@FreeBSD.org>2001-09-05 20:10:59 +0000
committerdd <dd@FreeBSD.org>2001-09-05 20:10:59 +0000
commit91ffaa180c9fedbda554ad6af11ab9fa3c25995e (patch)
treedaeeec3a70e25abbb362be816bcbe28a07febf84 /sbin/ping
parent860ee32ac40bb6e9ceb0f6e2000eccd8e9ed3755 (diff)
downloadFreeBSD-src-91ffaa180c9fedbda554ad6af11ab9fa3c25995e.zip
FreeBSD-src-91ffaa180c9fedbda554ad6af11ab9fa3c25995e.tar.gz
Use CFLAGS, not COPTS, in the Makefile. bsd.prog.mk conveniently adds
COPTS towards the end of final CFLAGS so that it can be used to override Makefile and other defaults. Using it in Makefiles risks having options set using it clobbered when somebody uses it on the command line. Approved by: bde
Diffstat (limited to 'sbin/ping')
-rw-r--r--sbin/ping/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ping/Makefile b/sbin/ping/Makefile
index 1cb5d07..45ca449 100644
--- a/sbin/ping/Makefile
+++ b/sbin/ping/Makefile
@@ -4,9 +4,9 @@
PROG= ping
MAN= ping.8
BINMODE=4555
-COPTS+= -Wall -Wmissing-prototypes
+CFLAGS+=-Wall -Wmissing-prototypes
.if ${MACHINE_ARCH} == "alpha"
-COPTS+= -fno-builtin # GCC's builtin memcpy doesn't do unaligned copies
+CFLAGS+=-fno-builtin # GCC's builtin memcpy doesn't do unaligned copies
.endif
DPADD= ${LIBM}
LDADD= -lm
OpenPOWER on IntegriCloud