summaryrefslogtreecommitdiff
path: root/default.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1996-02-29 00:27:22 +0000
committerRoland McGrath <roland@redhat.com>1996-02-29 00:27:22 +0000
commit5958f289000914a972b155ce4ca065bf26c79743 (patch)
tree8bc3822ab441b38ad31676ac706ef1cc0d05af88 /default.c
parentfd504b4d84c03d6d21bdca25b65143db9a42b517 (diff)
downloadgunmake-5958f289000914a972b155ce4ca065bf26c79743.tar.gz
Wed Feb 28 03:56:20 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
* default.c (default_terminal_rules): Remove + prefix from RCS cmds. (default_variables): Put + prefix in $(CHECKOUT,v) value instead.
Diffstat (limited to 'default.c')
-rw-r--r--default.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/default.c b/default.c
index 62eef92..7c487d1 100644
--- a/default.c
+++ b/default.c
@@ -1,5 +1,5 @@
/* Data base of default implicit rules for GNU Make.
-Copyright (C) 1988, 89, 90, 91, 92, 93, 94, 1995 Free Software Foundation, Inc.
+Copyright (C) 1988,89,90,91,92,93,94,95,96 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify
@@ -63,9 +63,9 @@ static struct pspec default_terminal_rules[] =
{
/* RCS. */
{ "%", "%,v",
- "+$(CHECKOUT,v)" },
+ "$(CHECKOUT,v)" },
{ "%", "RCS/%,v",
- "+$(CHECKOUT,v)" },
+ "$(CHECKOUT,v)" },
/* SCCS. */
{ "%", "s.%",
@@ -214,8 +214,8 @@ static char *default_variables[] =
/* This expands to $(CO) $(COFLAGS) $< $@ if $@ does not exist,
and to the empty string if $@ does exist. */
"CHECKOUT,v",
- "$(patsubst $@-noexist,$(CO) $(COFLAGS) $< $@,\
- $(filter-out $@,$(firstword $(wildcard $@) $@-noexist)))",
+ "+$(patsubst $@-noexist,$(CO) $(COFLAGS) $< $@,\
+ $(filter-out $@,$(firstword $(wildcard $@) $@-noexist)))",
"CO", "co",
"CPP", "$(CC) -E",