diff options
| author | Juanma Barranquero | 2014-02-17 20:01:14 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2014-02-17 20:01:14 +0100 |
| commit | 1bba94f235443c3d7f83afc8ab4edbc7f02437ee (patch) | |
| tree | b4a0448083369ee96589c49778cf94d6832573a1 | |
| parent | fb7a3ee2dba642f81ec190114ce7bb9d73c38e7d (diff) | |
| download | emacs-1bba94f235443c3d7f83afc8ab4edbc7f02437ee.tar.gz emacs-1bba94f235443c3d7f83afc8ab4edbc7f02437ee.zip | |
nt/Makefile.in: Fix bug#16772.
* nt/Makefile.in (install): Create destination directory before
copying README.W32.
| -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 @@ | |||
| 1 | 2014-02-17 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * Makefile.in (install): Create destination directory before | ||
| 4 | copying README.W32 (bug#16772). | ||
| 5 | |||
| 1 | 2014-02-13 Juanma Barranquero <lekktu@gmail.com> | 6 | 2014-02-13 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 7 | ||
| 3 | * Makefile.in (datarootdir, datadir, INSTALL_DATA): Declare. | 8 | * 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} | |||
| 171 | for file in ${INSTALLABLES} ; do \ | 171 | for file in ${INSTALLABLES} ; do \ |
| 172 | $(INSTALL_PROGRAM) $(INSTALL_STRIP) $${file} "$(DESTDIR)${bindir}"/`echo $${file} | sed -e 's/${EXEEXT}$$//' -e '$(TRANSFORM)'`${EXEEXT} ; \ | 172 | $(INSTALL_PROGRAM) $(INSTALL_STRIP) $${file} "$(DESTDIR)${bindir}"/`echo $${file} | sed -e 's/${EXEEXT}$$//' -e '$(TRANSFORM)'`${EXEEXT} ; \ |
| 173 | done | 173 | done |
| 174 | ${MKDIR_P} "$(DESTDIR)${datadir}/emacs/$(version)" | ||
| 174 | $(INSTALL_DATA) README.W32 "$(DESTDIR)${datadir}/emacs/$(version)" | 175 | $(INSTALL_DATA) README.W32 "$(DESTDIR)${datadir}/emacs/$(version)" |
| 175 | 176 | ||
| 176 | uninstall: | 177 | uninstall: |