]> git.ipfire.org Git - thirdparty/make.git/commitdiff
Formerly default.c.~24~
authorRoland McGrath <roland@redhat.com>
Fri, 16 Apr 1993 00:54:40 +0000 (00:54 +0000)
committerRoland McGrath <roland@redhat.com>
Fri, 16 Apr 1993 00:54:40 +0000 (00:54 +0000)
default.c

index bbd1f7790344ae31c2689376dc6db4e8e5902b59..38597b3e636c9dbcac1fc503e707d8f9ffd69683 100644 (file)
--- 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);
     }
 }