diff options
| author | Juanma Barranquero | 2014-02-17 20:04:51 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2014-02-17 20:04:51 +0100 |
| commit | f260162808078c02a3e5f08aed245154e9131aed (patch) | |
| tree | df235813f98c24fa68b8721aa87b5d1346a58d9a | |
| parent | 1bba94f235443c3d7f83afc8ab4edbc7f02437ee (diff) | |
| download | emacs-f260162808078c02a3e5f08aed245154e9131aed.tar.gz emacs-f260162808078c02a3e5f08aed245154e9131aed.zip | |
nt/Makefile.in: Follow up to previous change.
nt/Makefile.in (install): Create destination directory before copying
README.W32, and use ${datadir} to refer to the file.
Fixes: debbugs:16772
| -rw-r--r-- | nt/ChangeLog | 4 | ||||
| -rw-r--r-- | nt/Makefile.in | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index 1dc6319c4aa..ccbeb85c78c 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | 2014-02-17 Juanma Barranquero <lekktu@gmail.com> | 1 | 2014-02-17 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 2 | ||
| 3 | * Makefile.in (install): Create destination directory before | 3 | * Makefile.in (install): Create destination directory before copying |
| 4 | copying README.W32 (bug#16772). | 4 | README.W32, and use ${datadir} to refer to the file (bug#16772). |
| 5 | 5 | ||
| 6 | 2014-02-13 Juanma Barranquero <lekktu@gmail.com> | 6 | 2014-02-13 Juanma Barranquero <lekktu@gmail.com> |
| 7 | 7 | ||
diff --git a/nt/Makefile.in b/nt/Makefile.in index 4970ca44445..f498928bfce 100644 --- a/nt/Makefile.in +++ b/nt/Makefile.in | |||
| @@ -172,7 +172,7 @@ install: $(DESTDIR)${archlibdir} | |||
| 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 | ${MKDIR_P} "$(DESTDIR)${datadir}/emacs/$(version)" |
| 175 | $(INSTALL_DATA) README.W32 "$(DESTDIR)${datadir}/emacs/$(version)" | 175 | $(INSTALL_DATA) ${srcdir}/README.W32 "$(DESTDIR)${datadir}/emacs/$(version)" |
| 176 | 176 | ||
| 177 | uninstall: | 177 | uninstall: |
| 178 | rm -f "$(DESTDIR)${datadir}/emacs/$(version)/README.W32" | 178 | rm -f "$(DESTDIR)${datadir}/emacs/$(version)/README.W32" |