Changeset 1939 in kBuild
- Timestamp:
- Oct 26, 2008 1:41:32 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/tests/scripts/features/se_explicit
r969 r1939 6 6 # TEST #0: Test handing of '$' in prerequisites with and without second 7 7 # expansion. 8 # bird: Modified this test to use ${PRE} instead of $(PRE) as it failes 9 # when make is built with NO_ARCHIVES defined. 8 10 9 11 run_make_test(q! … … 13 15 foo$$bar: bar$$baz bar$$biz ; @echo '$@ : $^' 14 16 PRE = one two 15 bar$$baz: $$ (PRE)16 baraz: $$ (PRE)17 bar$$baz: $${PRE} 18 baraz: $${PRE} 17 19 PRE = three four 18 20 .DEFAULT: ; @echo '$@' 19 21 !, 20 22 '', 21 "\$ \nbar\$biz\nfoo\$bar : bar\$baz bar\$biz");23 "\${PRE}\nbar\$biz\nfoo\$bar : bar\$baz bar\$biz"); 22 24 23 25 run_make_test(undef, 'SE=1', "three\nfour\nbariz\nfoo\$bar : baraz bariz");
Note:
See TracChangeset
for help on using the changeset viewer.