summaryrefslogtreecommitdiff
path: root/usr.bin/locale
diff options
context:
space:
mode:
authorUlrich Spörlein <uqs@FreeBSD.org>2010-03-02 16:58:04 +0000
committerUlrich Spörlein <uqs@FreeBSD.org>2010-03-02 16:58:04 +0000
commit47e1a877c5c8191429b17ad74bfe5c161c87abb0 (patch)
tree360810296710b0ace559e49a0c503b4bcfdf7f05 /usr.bin/locale
parent7bc2288264df71dc20988a3c41fd6b644d16220d (diff)
downloadsrc-test-47e1a877c5c8191429b17ad74bfe5c161c87abb0.tar.gz
src-test-47e1a877c5c8191429b17ad74bfe5c161c87abb0.zip
Always assign WARNS using ?=
- fix some nearby style bugs - include Makefile.inc where it makes sense and reduces duplication Approved by: ed (co-mentor)
Notes
Notes: svn path=/head/; revision=204585
Diffstat (limited to 'usr.bin/locale')
-rw-r--r--usr.bin/locale/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/locale/Makefile b/usr.bin/locale/Makefile
index 5b8932cd25aac..96c18bca1e814 100644
--- a/usr.bin/locale/Makefile
+++ b/usr.bin/locale/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
-PROG = locale
-CFLAGS += -I${.CURDIR}/../../lib/libc/locale
-WARNS ?= 3
+PROG= locale
+WARNS?= 3
+CFLAGS+= -I${.CURDIR}/../../lib/libc/locale
.include <bsd.prog.mk>