
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
20 lines
462 B
Plaintext
20 lines
462 B
Plaintext
x=one
|
|
x="two and three"
|
|
x=four
|
|
x="five"
|
|
x=-I/this
|
|
x=-I"This or that"
|
|
x=-Ithat
|
|
x="-DTHIS=\"this and that\""
|
|
cfl=-I/this -I"This or that" -Ithat "-DTHIS=\"this and that\""
|
|
a=one b="two and three"
|
|
a=four b="five"
|
|
a=ONE b="TWO AND THREE"
|
|
a=FOUR b="FIVE"
|
|
We expect an error next:
|
|
make: "forloop.mk" line 38: Wrong number of words (9) in .for substitution list with 2 vars
|
|
make: Fatal errors encountered -- cannot continue
|
|
make: stopped in unit-tests
|
|
OK
|
|
exit status 0
|