summaryrefslogtreecommitdiff
path: root/default.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1993-04-16 00:54:40 +0000
committerRoland McGrath <roland@redhat.com>1993-04-16 00:54:40 +0000
commit1386d961a91276bcc8bbdedeada78480404dad6a (patch)
tree4339d385c1ae7af4ed980d99094fc081d9a0d167 /default.c
parent828b45420a10fa047bbab8ca0a321aae34826456 (diff)
downloadmake-1386d961a91276bcc8bbdedeada78480404dad6a.tar.gz
Formerly default.c.~24~
Diffstat (limited to 'default.c')
-rw-r--r--default.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/default.c b/default.c
index bbd1f779..38597b3e 100644
--- a/default.c
+++ b/default.c
@@ -223,11 +223,7 @@ static char *default_variables[] =
"F77", "$(FC)",
"F77FLAGS", "$(FFLAGS)",
#endif /* Cray. */
-#if defined (USG) || defined (ultrix) || defined (_IBMR2)
- "GET", "get",
-#else
- "GET", "/usr/sccs/get",
-#endif
+ "GET", SCCS_GET,
"LD", "ld",
"LEX", "lex",
"LINT", "lint",
@@ -310,7 +306,7 @@ set_default_suffixes ()
char *p = default_suffixes;
suffix_file->deps = (struct dep *)
multi_glob (parse_file_seq (&p, '\0', sizeof (struct dep)),
- sizeof (struct dep));
+ sizeof (struct dep), 1);
(void) define_variable ("SUFFIXES", 8, default_suffixes, o_default, 0);
}
}