diff options
| author | Kai Großjohann | 2002-06-18 11:28:41 +0000 |
|---|---|---|
| committer | Kai Großjohann | 2002-06-18 11:28:41 +0000 |
| commit | b3ae255b1a5258a1cfc429e0bf79305d635592cd (patch) | |
| tree | 75e74df30ebcd8ced23af3549287744687cb3496 | |
| parent | 63e889dfeb2e7155596e58874c67d6db9ee3ab1e (diff) | |
| download | emacs-b3ae255b1a5258a1cfc429e0bf79305d635592cd.tar.gz emacs-b3ae255b1a5258a1cfc429e0bf79305d635592cd.zip | |
(install-arch-indep, uninstall): Add Tramp.
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | Makefile.in | 6 |
2 files changed, 7 insertions, 3 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-06-18 Kai Gro,b_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> | ||
| 2 | |||
| 3 | * Makefile.in (install-arch-indep, uninstall): Add Tramp. | ||
| 4 | |||
| 1 | 2002-06-17 Kai Gro,b_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> | 5 | 2002-06-17 Kai Gro,b_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> |
| 2 | 6 | ||
| 3 | * info/dir (File): Add an entry for Tramp. | 7 | * info/dir (File): Add an entry for Tramp. |
diff --git a/Makefile.in b/Makefile.in index 266b8ed62e5..78e51fccdbe 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -453,7 +453,7 @@ install-arch-indep: mkdir info | |||
| 453 | chmod a+r ${infodir}/dir); \ | 453 | chmod a+r ${infodir}/dir); \ |
| 454 | fi; \ | 454 | fi; \ |
| 455 | cd ${srcdir}/info ; \ | 455 | cd ${srcdir}/info ; \ |
| 456 | for f in ada-mode* autotype* calc* ccmode* cl* dired-x* ebrowse* ediff* efaq* eintr* elisp* emacs* eshell* eudc* forms* gnus* idlwave* info* message* mh-e* pcl-cvs* reftex* sc* speedbar* vip* widget* woman*; do \ | 456 | for f in ada-mode* autotype* calc* ccmode* cl* dired-x* ebrowse* ediff* efaq* eintr* elisp* emacs* eshell* eudc* forms* gnus* idlwave* info* message* mh-e* pcl-cvs* reftex* sc* speedbar* tramp* vip* widget* woman*; do \ |
| 457 | (cd $${thisdir}; \ | 457 | (cd $${thisdir}; \ |
| 458 | ${INSTALL_DATA} ${srcdir}/info/$$f ${infodir}/$$f; \ | 458 | ${INSTALL_DATA} ${srcdir}/info/$$f ${infodir}/$$f; \ |
| 459 | chmod a+r ${infodir}/$$f); \ | 459 | chmod a+r ${infodir}/$$f); \ |
| @@ -463,7 +463,7 @@ install-arch-indep: mkdir info | |||
| 463 | thisdir=`/bin/pwd`; \ | 463 | thisdir=`/bin/pwd`; \ |
| 464 | if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \ | 464 | if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \ |
| 465 | then \ | 465 | then \ |
| 466 | for f in ada-mode autotype calc ccmode cl dired-x ebrowse ediff efaq elisp eintr emacs emacs-mime eshell eudc forms gnus idlwave info message mh-e pcl-cvs reftex sc speedbar vip viper widget woman; do \ | 466 | for f in ada-mode autotype calc ccmode cl dired-x ebrowse ediff efaq elisp eintr emacs emacs-mime eshell eudc forms gnus idlwave info message mh-e pcl-cvs reftex sc speedbar tramp vip viper widget woman; do \ |
| 467 | (cd $${thisdir}; \ | 467 | (cd $${thisdir}; \ |
| 468 | ${INSTALL_INFO} --info-dir=${infodir} ${infodir}/$$f); \ | 468 | ${INSTALL_INFO} --info-dir=${infodir} ${infodir}/$$f); \ |
| 469 | done; \ | 469 | done; \ |
| @@ -529,7 +529,7 @@ uninstall: | |||
| 529 | done | 529 | done |
| 530 | (cd ${archlibdir} && rm -f fns-*) | 530 | (cd ${archlibdir} && rm -f fns-*) |
| 531 | -rm -rf ${libexecdir}/emacs/${version} | 531 | -rm -rf ${libexecdir}/emacs/${version} |
| 532 | (cd ${infodir} && rm -f cl* ada-mode* autotype* calc* ccmode* ebrowse* efaq* eintr elisp* eshell* eudc* idlwave* message* pcl-cvs* reftex* speedbar* widget* woman* dired-x* ediff* emacs* forms* gnus* info* mh-e* sc* vip*) | 532 | (cd ${infodir} && rm -f cl* ada-mode* autotype* calc* ccmode* ebrowse* efaq* eintr elisp* eshell* eudc* idlwave* message* pcl-cvs* reftex* speedbar* tramp* widget* woman* dired-x* ediff* emacs* forms* gnus* info* mh-e* sc* vip*) |
| 533 | (cd ${man1dir} && rm -f emacs${manext} emacsclient${manext} etags${manext} ctags${manext}) | 533 | (cd ${man1dir} && rm -f emacs${manext} emacsclient${manext} etags${manext} ctags${manext}) |
| 534 | (cd ${bindir} && rm -f $(EMACSFULL) $(EMACS)) | 534 | (cd ${bindir} && rm -f $(EMACSFULL) $(EMACS)) |
| 535 | 535 | ||