diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-11-15 21:55:21 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-11-15 21:55:21 +0000 |
commit | 8fa4d1e3cd96f79c0138355314152b58b0c0faba (patch) | |
tree | c98cbebf95cee91b0202c3d24bfb75825c00dec7 /Makefile.in | |
parent | f756c620bc9dcfc0538174e77ecafa36eee31da4 (diff) | |
download | emacs-8fa4d1e3cd96f79c0138355314152b58b0c0faba.tar.gz |
(uninstall): Fix previous change.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 76072df1b33..a9a5452fc92 100644 --- a/Makefile.in +++ b/Makefile.in @@ -335,7 +335,7 @@ install-arch-dep: mkdir exec_prefix=${exec_prefix} bindir=${bindir} \ libexecdir=${libexecdir} archlibdir=${archlibdir} \ INSTALL_STRIP=${INSTALL_STRIP}) - ${INSTALL_PROGRAM} $(INSTALL_STRIP) src/emacs ${bindir}/${EMACSFULL} + ${INSTALL_PROGRAM} $(INSTALL_STRIP) src/emacs ${bindir}/$(EMACSFULL) -chmod 1755 ${bindir}/$(EMACSFULL) rm -f ${bindir}/$(EMACS) -ln ${bindir}/$(EMACSFULL) ${bindir}/$(EMACS) @@ -514,7 +514,7 @@ uninstall: -rm -rf ${libexecdir}/emacs/${version} (cd ${infodir} && rm -f cl* ada-mode* autotype* ccmode* ebrowse* efaq* elisp* eshell* eudc* idlwave* message* pcl-cvs* reftex* speedbar* widget* woman* dired-x* ediff* emacs* forms* gnus* info* mh-e* sc* vip*) (cd ${man1dir} && rm -f emacs${manext} emacsclient${manext} etags${manext} ctags${manext} gfdl${manext}) - (cd ${bindir} && rm -f emacs-${version} $(EMACS)) + (cd ${bindir} && rm -f $(EMACSFULL) $(EMACS)) FRC: |