]> code.delx.au - gnu-emacs/blobdiff - Makefile.in
(Fdelete_frame): Fix previous change.
[gnu-emacs] / Makefile.in
index 69b51c58b2f8df82cdda2ab28978ea10b4e63fc0..884125e49b24ca1518e493127738e044277921e9 100644 (file)
@@ -59,9 +59,6 @@ version=@version@
 ### for, like `mips-dec-ultrix' or `sparc-sun-sunos'.
 configuration=@configuration@
 
-### Libraries which should be edited into lib-src/Makefile.
-libsrc_libs=@libsrc_libs@
-
 # ==================== Where To Install Things ====================
 
 # The default location for installation.  Everything is placed in
@@ -138,7 +135,8 @@ lisppath=@lisppath@
 # building.  This is only used during the process of
 # compiling Emacs, to help Emacs find its lisp files
 # before they've been installed in their final location.
-# It's usually identical to lisppath, except that the
+# It's usually identical to lisppath, except that 
+# it does not include locallisppath, and the
 # entry for the directory containing the installed lisp
 # files has been replaced with ../lisp.  This should be a
 # colon-separated list of directories.
@@ -197,7 +195,7 @@ COPYDESTS = ${etcdir} ${lispdir}
 
 all:   paths-force ${SUBDIR}
 
-removenullpaths=sed -e 's/^://' -e 's/:$$//' -e 's/::/:/'
+removenullpaths=sed -e 's/^://g' -e 's/:$$//g' -e 's/::/:/g'
 
 # Note that sed is not in /bin on 386bsd.
 src/paths.h: Makefile ${srcdir}/src/paths.h.in
@@ -352,7 +350,7 @@ install-arch-indep: mkdir
 mkdir: FRC.mkdir
        ./lib-src/make-path ${COPYDESTS} ${lockdir} ${infodir} ${mandir} \
          ${bindir} ${datadir} ${docdir} ${libdir} \
-         `echo ${locallisppath} | sed 's/:/ /'`
+         `echo ${locallisppath} | sed 's/:/ /g'`
        -chmod 777 ${lockdir}
 
 ### Delete all the installed files that the `install' target would
@@ -380,7 +378,7 @@ uninstall:
        done
        (cd ${infodir}; rm -f cl* emacs* forms* info* vip*)
        (cd ${mandir};  rm -f emacs.1 etags.1 ctags.1)
-       (cd ${bindir};  rm -f emacs-${version} emacs)
+       (cd ${bindir};  rm -f emacs-${version} $(EMACS))
 
 
 ### Some makes seem to remember that they've built something called FRC,