summaryrefslogtreecommitdiff
path: root/default.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1994-05-17 02:58:49 +0000
committerRoland McGrath <roland@redhat.com>1994-05-17 02:58:49 +0000
commitf2804372bdd66e69833e5c9e4e60978457f13ec8 (patch)
tree5bf3640d100c09a2fc5baf797558c944f52f15dc /default.c
parentc25db142649e38310b1a12ad0d5a830988676a7c (diff)
downloadmake-f2804372bdd66e69833e5c9e4e60978457f13ec8.tar.gz
(default_terminal_rules): In SCCS rules, put $(SCCS_OUTPUT_OPTION) before
$<. On some systems -G is grokked only before the file name.
Diffstat (limited to 'default.c')
-rw-r--r--default.c4
1 files 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 }
};