Module Name: src
Committed By: apb
Date: Sun Aug 24 13:07:25 UTC 2014
Modified Files:
src/usr.bin/make/unit-tests: escape.mk
Log Message:
Fix typos in variable names, and in a comment.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/usr.bin/make/unit-tests/escape.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/escape.mk
diff -u src/usr.bin/make/unit-tests/escape.mk:1.1 src/usr.bin/make/unit-tests/escape.mk:1.2
--- src/usr.bin/make/unit-tests/escape.mk:1.1 Sun Aug 24 11:52:45 2014
+++ src/usr.bin/make/unit-tests/escape.mk Sun Aug 24 13:07:25 2014
@@ -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.
#