Be sure to start parsing prereqs in the right place even if there are

escape characters (backslashes) in the target name.
See Savannah bug #33399
This commit is contained in:
Paul Smith
2011-11-14 07:31:06 +00:00
parent 9fcd90e36c
commit 4f47fbf953
4 changed files with 24 additions and 3 deletions

View File

@@ -151,5 +151,14 @@ two');
unlink('result','one','two');
# TEST 10: check for proper backslash handling
# Savannah bug #33399
run_make_test('
a\ xb :: ; @echo one
a\ xb :: ; @echo two
',
'', "one\ntwo\n");
# This tells the test driver that the perl test script executed properly.
1;