aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2014-02-17 20:04:51 +0100
committerJuanma Barranquero2014-02-17 20:04:51 +0100
commitf260162808078c02a3e5f08aed245154e9131aed (patch)
treedf235813f98c24fa68b8721aa87b5d1346a58d9a
parent1bba94f235443c3d7f83afc8ab4edbc7f02437ee (diff)
downloademacs-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/ChangeLog4
-rw-r--r--nt/Makefile.in2
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 @@
12014-02-17 Juanma Barranquero <lekktu@gmail.com> 12014-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
62014-02-13 Juanma Barranquero <lekktu@gmail.com> 62014-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
177uninstall: 177uninstall:
178 rm -f "$(DESTDIR)${datadir}/emacs/$(version)/README.W32" 178 rm -f "$(DESTDIR)${datadir}/emacs/$(version)/README.W32"