Changeset 2596 in kBuild for vendor/gnumake/current/tests/scripts/features/vpath
- Timestamp:
- Jun 19, 2012 10:44:52 PM (12 years ago)
- Location:
- vendor/gnumake/current
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
tests (modified) (1 prop)
-
tests/scripts/features/vpath (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
vendor/gnumake/current
- Property svn:ignore deleted
-
vendor/gnumake/current/tests
- Property svn:ignore deleted
-
vendor/gnumake/current/tests/scripts/features/vpath
-
Property svn:eol-style
changed from
nativetoLF
r53 r2596 1 # -*-perl-*- 2 1 3 $description = "The following test creates a makefile to test the \n" 2 4 ."vpath directive which allows you to specify a search \n" … … 60 62 } 61 63 64 # TEST 2: after vpath lookup ensure we don't get incorrect circular dependency 65 # warnings due to change of struct file ptr. Savannah bug #13529. 66 67 mkdir('vpath-d', 0777); 68 69 run_make_test(q! 70 vpath %.te vpath-d/ 71 .SECONDARY: 72 default: vpath-d/a vpath-d/b 73 vpath-d/a: fail.te 74 vpath-d/b : fail.te 75 vpath-d/fail.te: 76 !, 77 '', "#MAKE#: Nothing to be done for `default'.\n"); 78 79 rmdir('vpath-d'); 80 62 81 1; -
Property svn:eol-style
changed from
Note:
See TracChangeset
for help on using the changeset viewer.

