Changeset 153 in kBuild for branches/GNU/src/gmake/tests/scripts/features/conditionals
- Timestamp:
- Sep 8, 2004 2:43:30 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gmake/tests/scripts/features/conditionals
r53 r153 86 86 endif 87 87 88 all:; @echo DEF=$(DEF) DEF2=$(DEF2) 88 89 DEF3 = no 90 FUNC = $1 91 ifdef $(call FUNC,DEF)3 92 DEF3 = yes 93 endif 94 95 all:; @echo DEF=$(DEF) DEF2=$(DEF2) DEF3=$(DEF3) 89 96 90 97 EOF … … 93 100 94 101 &run_make_with_options($makefile2,"",&get_logfile,0); 95 $answer = "DEF=yes DEF2=yes \n";102 $answer = "DEF=yes DEF2=yes DEF3=yes\n"; 96 103 &compare_output($answer,&get_logfile(1)); 97 104
Note:
See TracChangeset
for help on using the changeset viewer.