diff options
author | Paul Smith <psmith@gnu.org> | 2002-09-23 22:16:40 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2002-09-23 22:16:40 +0000 |
commit | ae003efd6114af0c9a8750034182b883183500a7 (patch) | |
tree | 140284a79872e800ce2e6468d9b517f1ac2209fe /tests/scripts/features/double_colon | |
parent | ebd05dbeb31dbc09c496d76e802d9b68bd848e9a (diff) | |
download | gunmake-ae003efd6114af0c9a8750034182b883183500a7.tar.gz |
Fix a bug handling target/prerequisite names containing comment
characters.
Diffstat (limited to 'tests/scripts/features/double_colon')
-rw-r--r-- | tests/scripts/features/double_colon | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/scripts/features/double_colon b/tests/scripts/features/double_colon index 3e140c7..082b815 100644 --- a/tests/scripts/features/double_colon +++ b/tests/scripts/features/double_colon @@ -73,7 +73,7 @@ if ($parallel_jobs) { # TEST 4: Each double-colon rule is supposed to be run individually -&touch('f2.h'); +&utouch(-5, 'f2.h'); &touch('foo'); &run_make_with_options($makefile, "foo", &get_logfile, 0); @@ -90,7 +90,7 @@ if ($parallel_jobs) { # TEST 6: Each double-colon rule is supposed to be run individually -&touch('f1.h'); +&utouch(-5, 'f1.h'); unlink('f2.h'); &touch('foo'); |