]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 30 Jan 1998 14:44:06 +0000 (14:44 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 30 Jan 1998 14:44:06 +0000 (14:44 +0000)
1998-01-30 23:37  Ulrich Drepper  <drepper@cygnus.com>

* Makefile.in: Add comment about CVSOPTS Makefile variable.
* Makerules: Use CVSOPTS in cvs invocation.
* Makefile: Likewise.
* MakeTAGS: Likewise.
* Make-dist: Likewise.

ChangeLog
Make-dist
MakeTAGS
Makefile
Makefile.in
Makerules

index c8254668ae9e04af46665dc87719bbe3fea7ebf2..23ddfaadd4558d5d2e254d24d1a65c3734d9d873 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+1998-01-30 23:37  Ulrich Drepper  <drepper@cygnus.com>
+
+       * Makefile.in: Add comment about CVSOPTS Makefile variable.
+       * Makerules: Use CVSOPTS in cvs invocation.
+       * Makefile: Likewise.
+       * MakeTAGS: Likewise.
+       * Make-dist: Likewise.
+
 1998-01-30 22:37  Ulrich Drepper  <drepper@cygnus.com>
 
        * sysdeps/generic/memmem.c: Correct last change.
index f77eb355074b44329fddf42dc28671a52bb3f9d1..c4e10180bf225188f424570b9918094f08ecb1a3 100644 (file)
--- a/Make-dist
+++ b/Make-dist
@@ -1,4 +1,4 @@
-# Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
+# Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98 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
@@ -188,7 +188,7 @@ foo:=$(shell echo '+sysdep-dist=$(+sysdep-dist)' >&2)
 define autoconf-it
 autoconf $(ACFLAGS) $< > $@.new
 mv -f $@.new $@
-test ! -d CVS || cvs commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
+test ! -d CVS || cvs $(CVSOPTS) commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
 endef
 
 configure: configure.in aclocal.m4; $(autoconf-it)
@@ -225,7 +225,7 @@ README: README.template version.h
        sed -e 's/RELEASE/$(release)/' -e 's/VERSION/$(version)/' < $< > $@
 # Make it unwritable so I won't change it by mistake.
        chmod 444 $@
-       test ! -d CVS || cvs commit -m'Remade for $(release)-$(version)' $@
+       test ! -d CVS || cvs $(CVSOPTS) commit -m'Remade for $(release)-$(version)' $@
 
 
 endif  # Subdirectory vs. parent makefile
index 2fe78c123b301f1fdda25568c109d297a967226a..8bc587a02cdc9b64f544c304f27ff3ed783fa937 100644 (file)
--- a/MakeTAGS
+++ b/MakeTAGS
@@ -1,6 +1,6 @@
 # Make the TAGS files.
 
-# Copyright (C) 1992, 1994, 1995, 1996 Free Software Foundation, Inc.
+# Copyright (C) 1992, 1994, 1995, 1996, 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
@@ -176,7 +176,7 @@ $P/libc.pot: $(all-pot)
            po/header.pot > $@.new
        $(XGETTEXT) -d - --omit-header -n -s $^ >> $@.new
        mv -f $@.new $@
-       test ! -d CVS || cvs ci -m'Regenerated from source files' $@
+       test ! -d CVS || cvs $(CVSOPTS) ci -m'Regenerated from source files' $@
 
 $(subdirs:%=$P/%.pot): $P/%.pot: FORCE
        $(MAKE) -C $* no_deps=t ../$@
index ed8d327ddc3dddd8a1eb859d72f3530050345bac..bad92c6e8c492fdd462668595eb42f6a4cb96cd0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
+# Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98 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
@@ -33,7 +33,7 @@ define autoconf-it
 autoconf $(ACFLAGS) $< > $@.new
 chmod a-w,a+x $@.new
 mv -f $@.new $@
-test ! -d CVS || cvs commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
+test ! -d CVS || cvs $(CVSOPTS) commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
 endef
 
 configure: configure.in aclocal.m4; $(autoconf-it)
index 3cb24bf09773bae0b71d5f16e04a91e37618d984..8b921c69050f7b2e8393d4bfc8f540c62df0c5d9 100644 (file)
@@ -5,5 +5,10 @@ srcdir = @srcdir@
 # Uncomment the line below if you want to do parallel build.
 # PARALLELMFLAGS = -j 4
 
+# This option is for those who modify the sources and keep them in a
+# CVS repository.  Sometimes it is necessary to pass options to the cvs
+# program (not the command), like -z9 or -x.
+# CVSOPTS = -z9
+
 all .DEFAULT:
        $(MAKE) PARALLELMFLAGS="$(PARALLELMFLAGS)" -C $(srcdir) objdir=`pwd` $@
index 62fd79f684ba4ac39824ac775e31e67b5677a6a4..a747ac2a9ee4e36b47ca315be2418d1b41cba935 100644 (file)
--- a/Makerules
+++ b/Makerules
@@ -1,4 +1,4 @@
-# Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
+# Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98 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
@@ -956,6 +956,6 @@ $(gpl2lgpl): %: $(..)gpl2lgpl.sed /home/gd/gnu/lib/%
 # So I don't edit them by mistake.
        chmod a-w $@-tmp
        mv -f $@-tmp $@
-       test ! -d CVS || cvs commit -m'Updated from $^' $@
+       test ! -d CVS || cvs $(CVSOPTS) commit -m'Updated from $^' $@
 endif
 endif