diff options
| author | Dave Love | 2000-05-10 18:02:16 +0000 |
|---|---|---|
| committer | Dave Love | 2000-05-10 18:02:16 +0000 |
| commit | b992884d9f7fc0f3405c4d962d2b3367d8cca05b (patch) | |
| tree | fbdd83618259db3f94228865b91367c868a916b2 | |
| parent | ac4c2e6b4de4e639a7d3e045b78acc96544842ca (diff) | |
| download | emacs-b992884d9f7fc0f3405c4d962d2b3367d8cca05b.tar.gz emacs-b992884d9f7fc0f3405c4d962d2b3367d8cca05b.zip | |
(install-arch-indep): Filter CVS as well as RCS.
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | Makefile.in | 4 |
2 files changed, 6 insertions, 2 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2000-05-09 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (install-arch-indep): Filter CVS as well as RCS. | ||
| 4 | |||
| 1 | 2000-05-05 Gerd Moellmann <gerd@gnu.org> | 5 | 2000-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: | |||
| 611 | dist: | 611 | dist: |
| 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 |
| 615 | force-info: | 615 | force-info: |
| 616 | info: force-info | 616 | info: force-info |
| 617 | # Note that man/Makefile knows how to | 617 | # Note that man/Makefile knows how to |