about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-08-03 04:40:50 +0000
committerUlrich Drepper <drepper@redhat.com>2000-08-03 04:40:50 +0000
commitaaf688e85f11a2e6d2fc7b9afbf81e15e146f766 (patch)
tree181d7ef2008c2c93747f1c5cc15a83605e1ad487
parent74dd1fee1cea649ee16ee94c898cc71ce67dd02f (diff)
downloadglibc-aaf688e85f11a2e6d2fc7b9afbf81e15e146f766.tar.gz
glibc-aaf688e85f11a2e6d2fc7b9afbf81e15e146f766.tar.xz
glibc-aaf688e85f11a2e6d2fc7b9afbf81e15e146f766.zip
Update.
	* Makeconfig (all-subdirs): Add conform.
	* conform/Makefile: Include ../Rules.

	* Makefile (README): Add rules to generate here as well.

2000-08-02  Ulrich Drepper  <drepper@redhat.com>
-rw-r--r--ChangeLog7
-rw-r--r--Makeconfig2
-rw-r--r--Makefile9
-rw-r--r--README2
-rw-r--r--conform/Makefile2
5 files changed, 19 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 6cd528ebea..0a0dfbdf9b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2000-08-02  Ulrich Drepper  <drepper@redhat.com>
 
+	* Makeconfig (all-subdirs): Add conform.
+	* conform/Makefile: Include ../Rules.
+
+	* Makefile (README): Add rules to generate here as well.
+
+2000-08-02  Ulrich Drepper  <drepper@redhat.com>
+
 	* version.h (VERSION): Bump to 2.1.92.
 
 	* sysdeps/ia64/Dist: Add _mcount.S.
diff --git a/Makeconfig b/Makeconfig
index 40404a5d1f..5064152366 100644
--- a/Makeconfig
+++ b/Makeconfig
@@ -818,7 +818,7 @@ all-subdirs = csu assert ctype locale intl catgets math setjmp signal	    \
 	      stdlib stdio-common $(stdio) malloc string wcsmbs time dirent \
 	      grp pwd posix io termios resource misc socket sysvipc gmon    \
 	      gnulib iconv iconvdata wctype manual shadow po argp	    \
-	      crypt $(add-ons) nss localedata timezone rt debug		    \
+	      crypt $(add-ons) nss localedata timezone rt conform debug	    \
 	      $(sysdep-subdirs) $(dlfcn) $(binfmt-subdir)
 all-subdirs := $(filter-out $(sysdep-inhibit-subdirs),$(all-subdirs))
 
diff --git a/Makefile b/Makefile
index ddb682d69f..6da6df0dde 100644
--- a/Makefile
+++ b/Makefile
@@ -272,7 +272,14 @@ distribute  :=	README README.libm INSTALL FAQ FAQ.in NOTES NEWS BUGS	\
 distribute := $(strip $(distribute))
 generated := $(generated) stubs.h
 
-README: README.template version.h ; # Make-dist should update README.
+README: README.template version.h
+	-rm -f $@
+	sed -e 's/RELEASE/$(release)/' -e 's/VERSION/$(version)/' < $< > $@
+# Make it unwritable so I won't change it by mistake.
+	chmod 444 $@
+ifeq ($(with-cvs),yes)
+	test ! -d CVS || cvs $(CVSOPTS) commit -m'Remade for $(release)-$(version)' $@
+endif
 
 define format-me
 @rm -f $@
diff --git a/README b/README
index ec6464abb7..1b9836f9d9 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-This directory contains the version 2.1.91 release of the GNU C Library.
+This directory contains the version 2.1.92 release of the GNU C Library.
 Many bugs have been fixed since the last release.
 Some bugs surely remain.
 
diff --git a/conform/Makefile b/conform/Makefile
index af8f2a033a..0104e37d98 100644
--- a/conform/Makefile
+++ b/conform/Makefile
@@ -23,3 +23,5 @@ subdir	:= conform
 
 distribute = conformtest.pl $(wildcard data/*.h-data) \
 	   $(wildcard data/*/*.h-data)
+
+include ../Rules