Module Name: src
Committed By: rillig
Date: Fri Nov 6 20:29:35 UTC 2020
Modified Files:
src/usr.bin/make/unit-tests: directive-ifmake.mk
Log Message:
make(1): fix indentation in test directive-ifmake
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/usr.bin/make/unit-tests/directive-ifmake.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/make/unit-tests/directive-ifmake.mk
diff -u src/usr.bin/make/unit-tests/directive-ifmake.mk:1.4 src/usr.bin/make/unit-tests/directive-ifmake.mk:1.5
--- src/usr.bin/make/unit-tests/directive-ifmake.mk:1.4 Sun Aug 30 14:25:45 2020
+++ src/usr.bin/make/unit-tests/directive-ifmake.mk Fri Nov 6 20:29:35 2020
@@ -1,44 +1,44 @@
-# $NetBSD: directive-ifmake.mk,v 1.4 2020/08/30 14:25:45 rillig Exp $
+# $NetBSD: directive-ifmake.mk,v 1.5 2020/11/06 20:29:35 rillig Exp $
#
# Tests for the .ifmake directive, which provides a shortcut for asking
# whether a certain target is requested to be made from the command line.
# This is the most basic form.
.ifmake first
-.info ok: positive condition works
+. info ok: positive condition works
.else
-.warning positive condition fails
+. warning positive condition fails
.endif
# The not operator works as expected.
# An alternative interpretation were that this condition is asking whether
# the target "!first" was requested. To distinguish this, see the next test.
.ifmake !first
-.warning unexpected
+. warning unexpected
.else
-.info ok: negation works
+. info ok: negation works
.endif
# See if the exclamation mark really means "not", or if it is just part of
# the target name.
.ifmake !!first
-.info ok: double negation works
+. info ok: double negation works
.else
-.warning double negation fails
+. warning double negation fails
.endif
# Multiple targets can be combined using the && and || operators.
.ifmake first && second
-.info ok: both mentioned
+. info ok: both mentioned
.else
-.warning && does not work as expected
+. warning && does not work as expected
.endif
# Negation also works in complex conditions.
.ifmake first && !unmentioned
-.info ok: only those mentioned
+. info ok: only those mentioned
.else
-.warning && with ! does not work as expected
+. warning && with ! does not work as expected
.endif
# Using the .MAKEFLAGS special dependency target, arbitrary command
@@ -46,9 +46,9 @@
# possible to extend the targets to be made.
.MAKEFLAGS: late-target
.ifmake late-target
-.info Targets can even be added at parse time.
+. info Targets can even be added at parse time.
.else
-.info No, targets cannot be added at parse time anymore.
+. info No, targets cannot be added at parse time anymore.
.endif
first second unmentioned late-target: