aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-05-10 18:02:16 +0000
committerDave Love2000-05-10 18:02:16 +0000
commitb992884d9f7fc0f3405c4d962d2b3367d8cca05b (patch)
treefbdd83618259db3f94228865b91367c868a916b2
parentac4c2e6b4de4e639a7d3e045b78acc96544842ca (diff)
downloademacs-b992884d9f7fc0f3405c4d962d2b3367d8cca05b.tar.gz
emacs-b992884d9f7fc0f3405c4d962d2b3367d8cca05b.zip
(install-arch-indep): Filter CVS as well as RCS.
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9600677090d..821bde9cd4b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12000-05-09 Dave Love <fx@gnu.org>
2
3 * Makefile.in (install-arch-indep): Filter CVS as well as RCS.
4
12000-05-05 Gerd Moellmann <gerd@gnu.org> 52000-05-05 Gerd Moellmann <gerd@gnu.org>
2 6
3 * make-dist: Make a link for lib-src/grep-changelog. Copy 7 * make-dist: Make a link for lib-src/grep-changelog. Copy
diff --git a/Makefile.in b/Makefile.in
index 738410ac683..cf60eecd2cf 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -337,7 +337,7 @@ install-arch-indep: mkdir info
337 && (echo "Copying $${dir} to $${dest}..." ; \ 337 && (echo "Copying $${dir} to $${dest}..." ; \
338 (cd $${dir}; tar -cf - . ) \ 338 (cd $${dir}; tar -cf - . ) \
339 |(cd $${dest};umask 022; tar -xvf - && cat > /dev/null); \ 339 |(cd $${dest};umask 022; tar -xvf - && cat > /dev/null); \
340 for subdir in `find $${dest} -type d ! -name RCS -print` ; do \ 340 for subdir in `find $${dest} -type d ! -name RCS ! -name CVS -print` ; do \
341 chmod a+rx $${subdir} ; \ 341 chmod a+rx $${subdir} ; \
342 rm -rf $${subdir}/RCS ; \ 342 rm -rf $${subdir}/RCS ; \
343 rm -rf $${subdir}/CVS ; \ 343 rm -rf $${subdir}/CVS ; \
@@ -611,7 +611,7 @@ check:
611dist: 611dist:
612 cd ${srcdir}; ./make-dist 612 cd ${srcdir}; ./make-dist
613 613
614.PHONY: info dvi dist check 614.PHONY: info dvi dist check html
615force-info: 615force-info:
616info: force-info 616info: force-info
617 # Note that man/Makefile knows how to 617 # Note that man/Makefile knows how to