diff options
author | 2013-11-10 14:58:44 +0000 | |
---|---|---|
committer | 2013-11-10 14:58:44 +0000 | |
commit | 45180a25fe8864e79317e2cebe363e0163ed829c (patch) | |
tree | 9ac063e38a1c0fa85d88abc6a6c734cc29499f25 | |
parent | clarify that \[uXXXX] wants uppercase hex digits (diff) | |
download | wireguard-openbsd-45180a25fe8864e79317e2cebe363e0163ed829c.tar.xz wireguard-openbsd-45180a25fe8864e79317e2cebe363e0163ed829c.zip |
prettier whitespace in variable assignments
-rw-r--r-- | regress/usr.bin/mandoc/Makefile.inc | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/regress/usr.bin/mandoc/Makefile.inc b/regress/usr.bin/mandoc/Makefile.inc index 4fc34e4e31d..d1ac13c98ce 100644 --- a/regress/usr.bin/mandoc/Makefile.inc +++ b/regress/usr.bin/mandoc/Makefile.inc @@ -1,19 +1,19 @@ -# $OpenBSD: Makefile.inc,v 1.7 2011/11/17 16:28:45 schwarze Exp $ +# $OpenBSD: Makefile.inc,v 1.8 2013/11/10 14:58:44 schwarze Exp $ # --- programs --- -DIFF=diff -au -MANDOC?=mandoc +DIFF = diff -au +MANDOC ?= mandoc # --- lists of targets --- -ASCIIFILES=${REGRESS_TARGETS:C/$/.mandoc_ascii/} -ASCIIDIFFS=${REGRESS_TARGETS:C/$/.diff_ascii/} +ASCIIFILES = ${REGRESS_TARGETS:C/$/.mandoc_ascii/} +ASCIIDIFFS = ${REGRESS_TARGETS:C/$/.diff_ascii/} -MANFILES=${REGRESS_TARGETS:C/$/.mandoc_man/} ${REGRESS_TARGETS:C/$/.in_man/} -MANDIFFS=${REGRESS_TARGETS:C/$/.diff_man/} -SKIP_TMAN?= +MANFILES = ${REGRESS_TARGETS:C/$/.mandoc_man/} ${REGRESS_TARGETS:C/$/.in_man/} +MANDIFFS = ${REGRESS_TARGETS:C/$/.diff_man/} +SKIP_TMAN ?= # --- convenience targets --- @@ -84,17 +84,17 @@ tman-clean: # --- the groff program --- -NROFF=/usr/local/bin/nroff -c -mandoc -Tascii +NROFF = /usr/local/bin/nroff -c -mandoc -Tascii # --- the list of targets --- -SKIP_GROFF?= +SKIP_GROFF ?= -OUTFILES= +OUTFILES = .for t in ${REGRESS_TARGETS} . if empty(SKIP_GROFF:M${t}) -OUTFILES+=${t}.out_ascii +OUTFILES += ${t}.out_ascii . endif .endfor |