diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1996-08-12 04:26:13 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1996-08-12 04:26:13 +0000 |
commit | dcfafd3965b5ba439703d9c9942fd1d61eea4962 (patch) | |
tree | 17eebb0adf2dce8970669e4e5668ef1a63893177 /gnu | |
parent | 4f70c1a3b255b1841a21d2e29f1df9c16ab7362f (diff) |
Top level Makefile.in is too dumb for FLAGS_TO_PASS stuff to work.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/rcs/Makefile.in | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/gnu/usr.bin/rcs/Makefile.in b/gnu/usr.bin/rcs/Makefile.in index cea8e861d52..bf5a37274cf 100644 --- a/gnu/usr.bin/rcs/Makefile.in +++ b/gnu/usr.bin/rcs/Makefile.in @@ -1,6 +1,6 @@ # Master makefile for RCS -# $Id: Makefile.in,v 1.1 1996/08/12 04:07:33 millert Exp $ +# $Id: Makefile.in,v 1.2 1996/08/12 04:26:12 millert Exp $ # Copyright 1995 Paul Eggert # Distributed under license by the Free Software Foundation, Inc. @@ -37,17 +37,6 @@ INSTALL_MAN = man # All other subdirs: SUBDIRS = src $(INSTALL_MAN) -FLAGS_TO_PASS = \ - CC='$(CC)' \ - CFLAGS='$(CFLAGS)' \ - LDFLAGS='$(LDFLAGS)' \ - LIBS='$(LIBS)' \ - MAKE='$(MAKE)' \ - bindir='$(bindir)' \ - mandir='$(mandir)' \ - prefix='$(prefix)' \ - exec_prefix='$(exec_prefix)' - default :: all standard_GNU_targets = \ @@ -60,7 +49,7 @@ maintainer-clean :: $(standard_GNU_targets) installcheck installdebug :: @for subdir in $(SUBDIRS); do \ - ( cd $$subdir && $(MAKE) $(FLAGS_TO_PASS) $@ ) || exit 1; \ + ( cd $$subdir && $(MAKE) $@ ) || exit 1; \ done dist :: $(srcdir)/configure |