From: Roland McGrath Date: Tue, 17 May 1994 02:58:49 +0000 (+0000) Subject: (default_terminal_rules): In SCCS rules, put $(SCCS_OUTPUT_OPTION) before X-Git-Tag: 3.70.4~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2804372bdd66e69833e5c9e4e60978457f13ec8;p=thirdparty%2Fmake.git (default_terminal_rules): In SCCS rules, put $(SCCS_OUTPUT_OPTION) before $<. On some systems -G is grokked only before the file name. --- diff --git a/default.c b/default.c index c8502a9b..c4c74424 100644 --- a/default.c +++ b/default.c @@ -63,9 +63,9 @@ static struct pspec default_terminal_rules[] = /* SCCS. */ { "%", "s.%", - "$(GET) $(GFLAGS) $< $(SCCS_OUTPUT_OPTION)" }, + "$(GET) $(GFLAGS) $(SCCS_OUTPUT_OPTION) $<" }, { "%", "SCCS/s.%", - "$(GET) $(GFLAGS) $< $(SCCS_OUTPUT_OPTION)" }, + "$(GET) $(GFLAGS) $(SCCS_OUTPUT_OPTION) $<" }, { 0, 0, 0 } };