diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | intl/Makefile | 4 | ||||
-rw-r--r-- | po/Makefile | 4 | ||||
-rw-r--r-- | posix/Makefile | 6 | ||||
-rw-r--r-- | stdlib/Makefile | 2 |
5 files changed, 15 insertions, 8 deletions
@@ -1,3 +1,10 @@ +1998-01-31 11:44 Ulrich Drepper <drepper@cygnus.com> + + * intl/Makefile: Use CVSOPTS in cvs invocation. + * po/Makefile: Likewise. + * posix/Makefile: Likewise. + * stdlib/Makefile: Likewise. + 1998-01-31 11:18 Ulrich Drepper <drepper@cygnus.com> * misc/efgcvt_r.c (fcvt_r): Handle illegal NDIGIT correctly. diff --git a/intl/Makefile b/intl/Makefile index 8f411fb..bb2c7be 100644 --- a/intl/Makefile +++ b/intl/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. +# Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -46,7 +46,7 @@ define copysrc sed -f $^ > $@.new chmod a-w $@.new mv -f $@.new $@ -test ! -d CVS || cvs commit -m'Updated from $<' $@ +test ! -d CVS || cvs $(CVSOPTS) commit -m'Updated from $<' $@ endef endif diff --git a/po/Makefile b/po/Makefile index 1009804..2c6de2f 100644 --- a/po/Makefile +++ b/po/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1996, 1997 Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -83,7 +83,7 @@ ifneq (,$(pofiles)) chmod 444 $@ linguas: $(pofiles:$(podir)/%=%) - test ! -d CVS || cvs commit -m'Copied from $(podir)' $^ + test ! -d CVS || cvs $(CVSOPTS) commit -m'Copied from $(podir)' $^ linguas.mo: $(pofiles:$(podir)/%.po=%.mo) endif diff --git a/posix/Makefile b/posix/Makefile index 2d69711..a055222 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -77,7 +77,7 @@ lib: $(objpfx)libposix.a testcases.h: TESTS TESTS2C.sed sed -f TESTS2C.sed < $< > $@T mv -f $@T $@ - test ! -d CVS || cvs commit -mRegenerated $@ + test ! -d CVS || cvs $(CVSOPTS) commit -mRegenerated $@ # Make the standalone glob/fnmatch package. @@ -95,13 +95,13 @@ glob/%.h: %.h glob/configure: glob/configure.in cd glob; autoconf $(ACFLAGS) - test ! -d CVS || cvs commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@ + test ! -d CVS || cvs $(CVSOPTS) commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@ glob/ChangeLog: ../ChangeLog changelog-extract --regexp 'posix/(glob|fnmatch).*' < $< > $@.new chmod a-w $@.new mv -f $@.new $@ - test ! -d CVS || cvs commit -mRegenerated $@ + test ! -d CVS || cvs $(CVSOPTS) commit -mRegenerated $@ %.Z: % compress -c $< > $@-tmp diff --git a/stdlib/Makefile b/stdlib/Makefile index 99236c5..3de9ff9 100644 --- a/stdlib/Makefile +++ b/stdlib/Makefile @@ -112,7 +112,7 @@ $(mpn-copy): %: $(ignore gmp2glibc.sed) $(gmp-srcdir)/%; $(gmp2glibc) .PHONY: copy-mpn clean-mpn mpn-stuff mpn-stuff: $(mpn-stuff) copy-mpn: $(mpn-stuff) - test ! -d CVS || cvs commit -m'Updated from $(gmp-srcdir)' $+ + test ! -d CVS || cvs $(CVSOPTS) commit -m'Updated from $(gmp-srcdir)' $+ clean-mpn: rm -f $(mpn-stuff) |