summaryrefslogtreecommitdiff
path: root/usr.bin/make
diff options
context:
space:
mode:
authorapb <apb@NetBSD.org>2014-08-24 13:07:25 +0000
committerapb <apb@NetBSD.org>2014-08-24 13:07:25 +0000
commitdffb754ca5966596e36b3dd10ea500539a006d2e (patch)
tree399e290e9628ba51afd6ed8a20a786d50da5af50 /usr.bin/make
parent4c2c78f28526d0b490e187a412448111542bba7e (diff)
Fix typos in variable names, and in a comment.
Diffstat (limited to 'usr.bin/make')
-rw-r--r--usr.bin/make/unit-tests/escape.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/make/unit-tests/escape.mk b/usr.bin/make/unit-tests/escape.mk
index 072f547086d..b8adc747f18 100644
--- a/usr.bin/make/unit-tests/escape.mk
+++ b/usr.bin/make/unit-tests/escape.mk
@@ -1,4 +1,4 @@
-# $Id: escape.mk,v 1.1 2014/08/24 11:52:45 apb Exp $
+# $Id: escape.mk,v 1.2 2014/08/24 13:07:25 apb Exp $
#
# Test backslash escaping.
@@ -24,7 +24,7 @@
# unspecified.
#
# Notice that the behaviour of <backslash><backslash> or
-# <backslash><anything other then newline> is not mentioned. I think
+# <backslash><anything other than newline> is not mentioned. I think
# this implies that <backslash> should be taken literally everywhere
# except before <newline>.
@@ -54,8 +54,8 @@ var-1bs: .PHONY
@echo VAR1BS=:${VAR1BS:Q}:
@echo VAR1BSa=:${VAR1BSa:Q}:
@echo VAR1BSA=:${VAR1BSA:Q}:
- @echo VAR1BSda=:${VAR1BSa:Q}:
- @echo VAR1BSdA=:${VAR1BSA:Q}:
+ @echo VAR1BSda=:${VAR1BSda:Q}:
+ @echo VAR1BSdA=:${VAR1BSdA:Q}:
# Double backslash in variable should be taken as two literal backslashes.
#
@@ -71,8 +71,8 @@ var-2bs: .PHONY
@echo VAR2BS=:${VAR2BS:Q}:
@echo VAR2BSa=:${VAR2BSa:Q}:
@echo VAR2BSA=:${VAR2BSA:Q}:
- @echo VAR2BSda=:${VAR2BSa:Q}:
- @echo VAR2BSdA=:${VAR2BSA:Q}:
+ @echo VAR2BSda=:${VAR2BSda:Q}:
+ @echo VAR2BSdA=:${VAR2BSdA:Q}:
# Backslash-newline in a variable setting is replaced by a single space.
#