diff options
-rw-r--r-- | nt/ChangeLog | 5 | ||||
-rw-r--r-- | nt/Makefile.in | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index 4c721c4eb73..1dc6319c4aa 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,8 @@ +2014-02-17 Juanma Barranquero <lekktu@gmail.com> + + * Makefile.in (install): Create destination directory before + copying README.W32 (bug#16772). + 2014-02-13 Juanma Barranquero <lekktu@gmail.com> * Makefile.in (datarootdir, datadir, INSTALL_DATA): Declare. diff --git a/nt/Makefile.in b/nt/Makefile.in index 9564ec241a5..4970ca44445 100644 --- a/nt/Makefile.in +++ b/nt/Makefile.in @@ -171,6 +171,7 @@ install: $(DESTDIR)${archlibdir} for file in ${INSTALLABLES} ; do \ $(INSTALL_PROGRAM) $(INSTALL_STRIP) $${file} "$(DESTDIR)${bindir}"/`echo $${file} | sed -e 's/${EXEEXT}$$//' -e '$(TRANSFORM)'`${EXEEXT} ; \ done + ${MKDIR_P} "$(DESTDIR)${datadir}/emacs/$(version)" $(INSTALL_DATA) README.W32 "$(DESTDIR)${datadir}/emacs/$(version)" uninstall: |