diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2014-02-17 20:01:14 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2014-02-17 20:01:14 +0100 |
commit | 1bba94f235443c3d7f83afc8ab4edbc7f02437ee (patch) | |
tree | b4a0448083369ee96589c49778cf94d6832573a1 /nt | |
parent | fb7a3ee2dba642f81ec190114ce7bb9d73c38e7d (diff) | |
download | emacs-1bba94f235443c3d7f83afc8ab4edbc7f02437ee.tar.gz |
nt/Makefile.in: Fix bug#16772.
* nt/Makefile.in (install): Create destination directory before
copying README.W32.
Diffstat (limited to 'nt')
-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: |