Various simple code cleanups.

This commit is contained in:
Paul Smith
2009-10-25 00:26:34 +00:00
parent 131f115730
commit 606cf9b169
7 changed files with 51 additions and 49 deletions

View File

@@ -538,14 +538,14 @@ set_default_suffixes (void)
suffix_file = enter_file (strcache_add (".SUFFIXES"));
if (no_builtin_rules_flag)
define_variable ("SUFFIXES", 8, "", o_default, 0);
define_variable_cname ("SUFFIXES", "", o_default, 0);
else
{
char *p = default_suffixes;
suffix_file->deps = enter_prereqs(PARSE_FILE_SEQ (&p, struct dep, '\0',
NULL, 0),
NULL);
define_variable ("SUFFIXES", 8, default_suffixes, o_default, 0);
define_variable_cname ("SUFFIXES", default_suffixes, o_default, 0);
}
}