diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-01-31 02:56:01 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-01-31 02:56:01 +0000 |
commit | 4eb36693e4452db4679a33c750c0738b73d1ebc5 (patch) | |
tree | 232e6770c08ec4bae1f0261871092ed13822b8d4 /posix | |
parent | 07b51ba59a50eadbda72fad0b2e55a4f0e26a291 (diff) | |
download | glibc-4eb36693e4452db4679a33c750c0738b73d1ebc5.tar glibc-4eb36693e4452db4679a33c750c0738b73d1ebc5.tar.gz glibc-4eb36693e4452db4679a33c750c0738b73d1ebc5.tar.bz2 glibc-4eb36693e4452db4679a33c750c0738b73d1ebc5.zip |
Update.
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.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/posix/Makefile b/posix/Makefile index 2d69711df8..a055222915 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 |