From f2804372bdd66e69833e5c9e4e60978457f13ec8 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 17 May 1994 02:58:49 +0000 Subject: [PATCH] (default_terminal_rules): In SCCS rules, put $(SCCS_OUTPUT_OPTION) before $<. On some systems -G is grokked only before the file name. --- default.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } };