8000 Back-patch replacement of README.CVS with README.git. · danielcode/postgres@4c2eb2d · GitHub
[go: up one dir, main page]

Skip to content

Commit 4c2eb2d

Browse files
committed
Back-patch replacement of README.CVS with README.git.
In older branches, also git-ify the "make distdir" rule.
1 parent 042a08c commit 4c2eb2d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

GNUmakefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ postgresql-test-$(VERSION).tar: distdir
9292

9393
distdir:
9494
-rm -rf $(distdir)* $(dummy)
95-
for x in `cd $(top_srcdir) && find . -name CVS -prune -o -print`; do \
95+
for x in `cd $(top_srcdir) && find . \( -name CVS -prune \) -o \( -name .git -prune \) -o -print`; do \
9696
file=`expr X$$x : 'X\./\(.*\)'`; \
9797
if test -d "$(top_srcdir)/$$file" ; then \
9898
mkdir "$(distdir)/$$file" && chmod 777 "$(distdir)/$$file"; \
@@ -103,7 +103,7 @@ distdir:
103103
done
104104
$(MAKE) -C $(distdir) distprep
105105
$(MAKE) -C $(distdir) distclean
106-
rm -f $(distdir)/README.CVS
106+
rm -f $(distdir)/README.git
107107

108108
distcheck: $(distdir).tar.gz
109109
-rm -rf $(dummy)

README.CVS renamed to README.git

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
In a release or snapshot tarball of PostgreSQL, documentation files named
44
INSTALL and HISTORY will appear in this directory. However, these files are
5-
not stored in CVS and so will not be present if you are using a CVS checkout.
6-
If you are using CVS, you can view the most recent install instructions at:
5+
not stored in git and so will not be present if you are using a git checkout.
6+
If you are using git, you can view the most recent install instructions at:
77
http://developer.postgresql.org/docs/postgres/installation.html
88
and the current release notes at:
99
http://developer.postgresql.org/docs/postgres/release.html
1010

11-
Users compiling from CVS will also need compatible versions of Bison and
12-
Flex, as discussed in the install documentation. Bison and Flex are not
11+
Users compiling from git will also need compatible versions of Bison, Flex,
12+
and Perl, as discussed in the install documentation. These programs are not
1313
needed when using a tarball, since the files they are needed to build are
14-
already present in the tarball.
14+
already present in the tarball. (On Windows, however, you need Perl anyway.)

0 commit comments

Comments
 (0)
0