VM

Merge lp:~ryanakca/vm/vm-1136371 into lp:vm

Proposed by Ryan Kavanagh
Status: Needs review
Proposed branch: lp:~ryanakca/vm/vm-1136371
Merge into: lp:vm
Diff against target: 55 lines (+19/-1)
2 files modified
configure.ac (+13/-0)
info/Makefile.in (+6/-1)
To merge this branch: bzr merge lp:~ryanakca/vm/vm-1136371
Reviewer Review Type Date Requested Status
VM development team Pending
Review via email: mp+151101@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Ryan Kavanagh (ryanakca) wrote :

Sorry, I forgot a backslash on line 48, breaking with style, but the updated target still runs. I can create a new merge request with the backslash if you'd like.

lp:~ryanakca/vm/vm-1136371 updated
1485. By Ryan Kavanagh

Call install-info after installing info files (LP: #1136371)

Revision history for this message
Ryan Kavanagh (ryanakca) wrote :

Please use the current (just pushed) revision as the initial one was incorrect in a few ways.

Unmerged revisions

1485. By Ryan Kavanagh

Call install-info after installing info files (LP: #1136371)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'configure.ac'
--- configure.ac 2011-12-30 12:14:08 +0000
+++ configure.ac 2013-03-01 01:01:21 +0000
@@ -86,6 +86,18 @@
86 AC_MSG_WARN([*** DVI and PDF files will not be built.])86 AC_MSG_WARN([*** DVI and PDF files will not be built.])
87 fi ])87 fi ])
8888
89# Find a install-info program. A failure is not fatal, only that info
90# files won't be properly installed
91AC_DEFUN([VM_PROG_INSTALLINFO],
92 [ AC_CHECK_PROG(INSTALL_INFO, ginstall-info, ginstall-info)
93 if test "x${INSTALL_INFO}" = "x" ; then
94 AC_CHECK_PROG(INSTALL_INFO, install-info, install-info)
95 if test "x{INSTALL_INFO}" = "x" ; then
96 AC_MSG_WARN([*** No install-info program found.])
97 AC_MSG_WARN([*** Info Dir file will not be updated.])
98 fi
99 fi ])
100
89# Choose an Emacs flavor according to the --with-emacs user option, or try101# Choose an Emacs flavor according to the --with-emacs user option, or try
90# emacs and xemacs.102# emacs and xemacs.
91# We use EMACS_PROG instead of EMACS to avoid colliding with Emacs' own103# We use EMACS_PROG instead of EMACS to avoid colliding with Emacs' own
@@ -261,6 +273,7 @@
261VM_PROG_XARGS273VM_PROG_XARGS
262VM_PROG_GNU_TAR274VM_PROG_GNU_TAR
263VM_PROG_MAKEINFO275VM_PROG_MAKEINFO
276VM_PROG_INSTALLINFO
264VM_PROG_TEXI2DVI277VM_PROG_TEXI2DVI
265278
266VM_PROG_EMACS279VM_PROG_EMACS
267280
=== modified file 'info/Makefile.in'
--- info/Makefile.in 2011-12-30 15:24:10 +0000
+++ info/Makefile.in 2013-03-01 01:01:21 +0000
@@ -16,6 +16,7 @@
16INSTALL_PROGRAM = @INSTALL_PROGRAM@16INSTALL_PROGRAM = @INSTALL_PROGRAM@
17INSTALL_SCRIPT = @INSTALL_SCRIPT@17INSTALL_SCRIPT = @INSTALL_SCRIPT@
18INSTALL_DATA = @INSTALL_DATA@18INSTALL_DATA = @INSTALL_DATA@
19INSTALL_INFO = @INSTALL_INFO@
1920
20prefix = @prefix@21prefix = @prefix@
21srcdir = @srcdir@22srcdir = @srcdir@
@@ -54,7 +55,11 @@
54 for i in `${LS} *.info* ` ; do \55 for i in `${LS} *.info* ` ; do \
55 echo "Installing $$i in $(DESTDIR)$(infodir)" ; \56 echo "Installing $$i in $(DESTDIR)$(infodir)" ; \
56 $(INSTALL_DATA) $$i "$(DESTDIR)$(infodir)" ; \57 $(INSTALL_DATA) $$i "$(DESTDIR)$(infodir)" ; \
57 done ; \58 if test "$(INSTALL_INFO)" ; then \
59 $(INSTALL_INFO) "$(DESTDIR)$(infodir)"/$$i \
60 "$(DESTDIR)$(infodir)"/dir ; \
61 fi ; \
62 done ; \
58 else \63 else \
59 if test "x$(LINKPATH)" = "x" ; then \64 if test "x$(LINKPATH)" = "x" ; then \
60 for i in `${LS} *.info* ` ; do \65 for i in `${LS} *.info* ` ; do \

Subscribers

People subscribed via source and target branches

to all changes: