aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-05-14 17:42:22 -0700
committerGlenn Morris2010-05-14 17:42:22 -0700
commit02be533b2a5020338453da4957d30dde4ed2c6fb (patch)
treee3b0620dbf4796a08a863a8da5d09caf0b55b28b
parent78ed0efce4b9a55b2c6ed47742bfc33588627df2 (diff)
downloademacs-02be533b2a5020338453da4957d30dde4ed2c6fb.tar.gz
emacs-02be533b2a5020338453da4957d30dde4ed2c6fb.zip
Remove references to CVS directories etc in Makefiles.
* Makefile.in (install-arch-indep): Remove references to RCS, CVS, and other files that no longer exist. * leim/Makefile.in (install): Remove references to CVS-related files. * lisp/Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Remove references to CVS, RCS and Old directories. * src/Makefile.in (${ns_appdir}): Remove references to CVS-related files.
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.in6
-rw-r--r--leim/ChangeLog4
-rw-r--r--leim/Makefile.in2
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/Makefile.in9
-rw-r--r--src/ChangeLog4
-rw-r--r--src/Makefile.in6
8 files changed, 24 insertions, 17 deletions
diff --git a/ChangeLog b/ChangeLog
index ab69ce7b457..fabf7b2f3ab 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12010-05-15 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (install-arch-indep): Remove references to RCS, CVS,
4 and other files that no longer exist.
5
12010-05-14 Glenn Morris <rgm@gnu.org> 62010-05-14 Glenn Morris <rgm@gnu.org>
2 7
3 * configure.in (cpp_undefs): Add mktime, register, X11. 8 * configure.in (cpp_undefs): Add mktime, register, X11.
diff --git a/Makefile.in b/Makefile.in
index 71d00243fed..245ec6cc8e6 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -476,11 +476,8 @@ install-arch-indep: mkdir info install-etc
476 | (cd $${dest}; umask 022; \ 476 | (cd $${dest}; umask 022; \
477 tar -xvf - && cat > /dev/null) || exit 1; \ 477 tar -xvf - && cat > /dev/null) || exit 1; \
478 find $${dest} -exec chown $${installuser} {} ';' ;\ 478 find $${dest} -exec chown $${installuser} {} ';' ;\
479 for subdir in `find $${dest} -type d ! -name RCS ! -name CVS -print` ; do \ 479 for subdir in `find $${dest} -type d -print` ; do \
480 chmod a+rx $${subdir} ; \ 480 chmod a+rx $${subdir} ; \
481 rm -rf $${subdir}/RCS ; \
482 rm -rf $${subdir}/CVS ; \
483 rm -f $${subdir}/.cvsignore ; \
484 rm -f $${subdir}/.gitignore ; \ 481 rm -f $${subdir}/.gitignore ; \
485 rm -f $${subdir}/.arch-inventory ; \ 482 rm -f $${subdir}/.arch-inventory ; \
486 rm -f $${subdir}/.DS_Store ; \ 483 rm -f $${subdir}/.DS_Store ; \
@@ -492,7 +489,6 @@ install-arch-indep: mkdir info install-etc
492 rm -f $${subdir}/[mM]akefile*.c $${subdir}/[mM]akefile*[.-]in \ 489 rm -f $${subdir}/[mM]akefile*.c $${subdir}/[mM]akefile*[.-]in \
493 $${subdir}/[mM]akefile ; \ 490 $${subdir}/[mM]akefile ; \
494 rm -f $${subdir}/ChangeLog* ; \ 491 rm -f $${subdir}/ChangeLog* ; \
495 rm -f $${subdir}/dired.todo ; \
496 done) ; \ 492 done) ; \
497 done 493 done
498 -rm -f $(DESTDIR)${lispdir}/subdirs.el 494 -rm -f $(DESTDIR)${lispdir}/subdirs.el
diff --git a/leim/ChangeLog b/leim/ChangeLog
index 4b9d6adbf39..972a3279a29 100644
--- a/leim/ChangeLog
+++ b/leim/ChangeLog
@@ -1,3 +1,7 @@
12010-05-15 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (install): Remove references to CVS-related files.
4
12010-05-07 Chong Yidong <cyd@stupidchicken.com> 52010-05-07 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * Version 23.2 released. 7 * Version 23.2 released.
diff --git a/leim/Makefile.in b/leim/Makefile.in
index f0fba8d2462..6eb18bc76d9 100644
--- a/leim/Makefile.in
+++ b/leim/Makefile.in
@@ -237,8 +237,6 @@ install: all
237 tar -chf - quail/* ja-dic \ 237 tar -chf - quail/* ja-dic \
238 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\ 238 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
239 fi; \ 239 fi; \
240 rm -rf ${INSTALLDIR}/CVS ${INSTALLDIR}/*/CVS; \
241 rm -f ${INSTALLDIR}/.cvsignore ${INSTALLDIR}/*/.cvsignore; \
242 rm -f ${INSTALLDIR}/.gitignore ${INSTALLDIR}/*/.gitignore; \ 240 rm -f ${INSTALLDIR}/.gitignore ${INSTALLDIR}/*/.gitignore; \
243 rm -f ${INSTALLDIR}/.arch-inventory ${INSTALLDIR}/*/.arch-inventory; \ 241 rm -f ${INSTALLDIR}/.arch-inventory ${INSTALLDIR}/*/.arch-inventory; \
244 rm -f ${INSTALLDIR}/\#* ${INSTALLDIR}/*/\#* ; \ 242 rm -f ${INSTALLDIR}/\#* ${INSTALLDIR}/*/\#* ; \
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a32d261b9e7..e8a7245ab69 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12010-05-15 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
4 Remove references to CVS, RCS and Old directories.
5
12010-05-14 Jay Belanger <jay.p.belanger@gmail.com> 62010-05-14 Jay Belanger <jay.p.belanger@gmail.com>
2 7
3 * calc-bin.el (math-format-twos-complement): Group digits when 8 * calc-bin.el (math-format-twos-complement): Group digits when
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index fe7dcfa4e99..4effdddff6a 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -84,28 +84,25 @@ COMPILE_FIRST = \
84emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT) 84emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT)
85 85
86# Common command to find subdirectories 86# Common command to find subdirectories
87
88setwins=subdirs=`(find . -type d -print)`; \ 87setwins=subdirs=`(find . -type d -print)`; \
89 for file in $$subdirs; do \ 88 for file in $$subdirs; do \
90 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* ) ;; \ 89 case $$file in */.* | */.*/* | */=* ) ;; \
91 *) wins="$$wins $$file" ;; \ 90 *) wins="$$wins $$file" ;; \
92 esac; \ 91 esac; \
93 done 92 done
94 93
95# Find all subdirectories except `obsolete' and `term'. 94# Find all subdirectories except `obsolete' and `term'.
96
97setwins_almost=subdirs=`(find . -type d -print)`; \ 95setwins_almost=subdirs=`(find . -type d -print)`; \
98 for file in $$subdirs; do \ 96 for file in $$subdirs; do \
99 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */obsolete | */term ) ;; \ 97 case $$file in */.* | */.*/* | */=* | */obsolete | */term ) ;; \
100 *) wins="$$wins $$file" ;; \ 98 *) wins="$$wins $$file" ;; \
101 esac; \ 99 esac; \
102 done 100 done
103 101
104# Find all subdirectories in which we might want to create subdirs.el 102# Find all subdirectories in which we might want to create subdirs.el
105
106setwins_for_subdirs=subdirs=`(find . -type d -print)`; \ 103setwins_for_subdirs=subdirs=`(find . -type d -print)`; \
107 for file in $$subdirs; do \ 104 for file in $$subdirs; do \
108 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */cedet* ) ;; \ 105 case $$file in */.* | */.*/* | */=* | */cedet* ) ;; \
109 *) wins="$$wins $$file" ;; \ 106 *) wins="$$wins $$file" ;; \
110 esac; \ 107 esac; \
111 done 108 done
diff --git a/src/ChangeLog b/src/ChangeLog
index f258174625a..ec0b9eeb178 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12010-05-15 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (${ns_appdir}): Remove references to CVS-related files.
4
12010-05-14 Stefan Monnier <monnier@iro.umontreal.ca> 52010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * eval.c (specbind): Remove left-over duplicate test. 7 * eval.c (specbind): Remove left-over duplicate test.
diff --git a/src/Makefile.in b/src/Makefile.in
index 8c723d1c886..3925938c70b 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -973,10 +973,8 @@ ${ns_appdir}: ${ns_appsrc}
973 rm -fr ${ns_appdir} 973 rm -fr ${ns_appdir}
974 mkdir -p ${ns_appdir} 974 mkdir -p ${ns_appdir}
975 ( cd ${ns_appsrc} ; tar cfh - . ) | ( cd ${ns_appdir} ; tar xf - ) 975 ( cd ${ns_appsrc} ; tar cfh - . ) | ( cd ${ns_appdir} ; tar xf - )
976 ( cd ${ns_appdir} ; for subdir in `find . -type d ! -name CVS -print` ; do \ 976 ( cd ${ns_appdir} ; for subdir in `find . -type d -print` ; do \
977 chmod a+rx $${subdir} ; \ 977 chmod a+rx $${subdir} ; done ; )
978 rm -rf $${subdir}/CVS ; \
979 rm -f $${subdir}/.cvsignore ; done ; )
980 978
981${ns_appbindir}Emacs: emacs${EXEEXT} 979${ns_appbindir}Emacs: emacs${EXEEXT}
982 mkdir -p ${ns_appbindir} 980 mkdir -p ${ns_appbindir}