Changeset 280 for branches/GNU/src/gmake/rule.c
- Timestamp:
- May 16, 2005, 6:54:02 PM (20 years ago)
- Location:
- branches/GNU/src/gmake
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gmake
- Property svn:ignore
-
old new 34 34 README.DOS 35 35 README.W32 36 README.OS2 36 37 aclocal.m4 37 38 autom4te.cache
-
- Property svn:ignore
-
branches/GNU/src/gmake/rule.c
r153 r280 138 138 139 139 dep->changed = !dir_file_exists_p (name, ""); 140 #ifdef VMS141 if (dep->changed && strchr (name, ':') != 0)142 #else143 if (dep->changed && *name == '/')144 #endif145 {146 /* The name is absolute and the directory does not exist.147 This rule can never possibly match, since this dependency148 can never possibly exist. So just remove the rule from149 the list. */150 freerule (rule, lastrule);151 --num_pattern_rules;152 goto end_main_loop;153 }154 140 } 155 141 else … … 162 148 163 149 lastrule = rule; 164 end_main_loop:165 150 rule = next; 166 151 } … … 225 210 deps->name = depname; 226 211 deps->ignore_mtime = 0; 212 deps->need_2nd_expansion = 0; 227 213 } 228 214
Note:
See TracChangeset
for help on using the changeset viewer.