aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.in8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 7236014e390..6751aa48881 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -349,9 +349,11 @@ install-arch-indep: mkdir
349 thisdir=`/bin/pwd`; \ 349 thisdir=`/bin/pwd`; \
350 if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \ 350 if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \
351 then \ 351 then \
352 (cd ${srcdir}/info ; \ 352 (cd ${infodir}; \
353 if [ ! -f ${infodir}/dir ] && [ -f dir ]; then \ 353 if [ ! -f dir.old ]; then mv -f dir dir.old; \
354 (cd $${thisdir}; ${INSTALL_DATA} ${srcdir}/info/dir ${infodir}/dir); \ 354 else mv -f dir dir.bak; fi; \
355 cd ${srcdir}/info ; \
356 (cd $${thisdir}; ${INSTALL_DATA} ${srcdir}/info/dir ${infodir}/dir); \
355 fi ; \ 357 fi ; \
356 for f in cl* dired-x* ediff* emacs* forms* gnus* info* mh-e* sc* vip*; do \ 358 for f in cl* dired-x* ediff* emacs* forms* gnus* info* mh-e* sc* vip*; do \
357 (cd $${thisdir}; ${INSTALL_DATA} ${srcdir}/info/$$f ${infodir}/$$f); \ 359 (cd $${thisdir}; ${INSTALL_DATA} ${srcdir}/info/$$f ${infodir}/$$f); \