summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsg <jsg@openbsd.org>2017-04-16 10:19:54 +0000
committerjsg <jsg@openbsd.org>2017-04-16 10:19:54 +0000
commit562a5d660d0d57643990955d18995213cbf12e8e (patch)
tree00380810baa57fe5f5b6e18ec64b760598c5c7cb
parentDifferent compilers and versions of compilers have different warnings. (diff)
downloadwireguard-openbsd-562a5d660d0d57643990955d18995213cbf12e8e.tar.xz
wireguard-openbsd-562a5d660d0d57643990955d18995213cbf12e8e.zip
remove -g from CFLAGS at florian's request
-rw-r--r--usr.bin/htpasswd/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/htpasswd/Makefile b/usr.bin/htpasswd/Makefile
index e2a3b24154c..634880e489a 100644
--- a/usr.bin/htpasswd/Makefile
+++ b/usr.bin/htpasswd/Makefile
@@ -1,9 +1,9 @@
-# $OpenBSD: Makefile,v 1.2 2017/04/16 10:16:35 jsg Exp $
+# $OpenBSD: Makefile,v 1.3 2017/04/16 10:19:54 jsg Exp $
PROG= htpasswd
SRCS= htpasswd.c
MAN= htpasswd.1
-CFLAGS+= -g -W -Wall
+CFLAGS+= -W -Wall
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare