]> git.eshelyaron.com Git - emacs.git/commitdiff
Tweak Makefile emacs-module.h handling
authorGlenn Morris <rgm@gnu.org>
Wed, 3 Oct 2018 20:47:01 +0000 (16:47 -0400)
committerEli Zaretskii <eliz@gnu.org>
Tue, 16 Oct 2018 15:43:45 +0000 (18:43 +0300)
* Makefile.in (install-arch-indep, uninstall): Respect DESTDIR.
Handle whitespace.  Remove non-portable mkdir argument.

(cherry picked from commit c1d0dbd6ca92cb221024382b19654e4fbf1d1ed3)

Makefile.in

index 77498181650f20c9a2d7f8fda2c1cec4f9fc74b9..f48f785fccaaf9ab4a511dedcaf45ab0e4dbec90 100644 (file)
@@ -561,8 +561,8 @@ set_installuser=for installuser in $${LOGNAME} $${USERNAME} $${USER} \
 ## See also these comments from 2004 about cp -r working fine:
 ## https://lists.gnu.org/r/autoconf-patches/2004-11/msg00005.html
 install-arch-indep: lisp install-info install-man ${INSTALL_ARCH_INDEP_EXTRA}
-       umask 022 && $(MKDIR_P) -m 0755 $(includedir)
-       $(INSTALL_DATA) src/emacs-module.h $(includedir)/emacs-module.h
+       umask 022 && $(MKDIR_P) "$(DESTDIR)$(includedir)"
+       $(INSTALL_DATA) src/emacs-module.h "$(DESTDIR)$(includedir)/emacs-module.h"
        -set ${COPYDESTS} ; \
        unset CDPATH; \
        $(set_installuser); \
@@ -746,7 +746,7 @@ install-strip:
 ###
 ### Don't delete the lisp and etc directories if they're in the source tree.
 uninstall: uninstall-$(NTDIR) uninstall-doc
-       rm -f $(includedir)/emacs-module.h
+       rm -f "$(DESTDIR)$(includedir)/emacs-module.h"
        $(MAKE) -C lib-src uninstall
        -unset CDPATH; \
        for dir in "$(DESTDIR)${lispdir}" "$(DESTDIR)${etcdir}" ; do    \