annotate src/default-octave-1-docinstall.patch @ 3725:2acaa9943159

qscintilla: update 2.8.4 * src/qscintilla.mk: update to version and checksum for 2.8.4
author John Donoghue
date Mon, 20 Oct 2014 11:01:00 -0400
parents 933b99febcf1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3721
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1 diff -ur a/doc/interpreter/Makefile.in b/doc/interpreter/Makefile.in
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
2 --- a/doc/interpreter/Makefile.in 2013-12-27 17:01:52.000000000 -0500
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
3 +++ b/doc/interpreter/Makefile.in 2014-01-21 12:47:59.618865568 -0500
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
4 @@ -2435,8 +2435,10 @@
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
5 if test -d "$$d2"; then \
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
6 echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
7 $(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
8 - echo " $(INSTALL_DATA) '$$d2'/* '$(DESTDIR)$(htmldir)/$$f'"; \
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
9 - $(INSTALL_DATA) "$$d2"/* "$(DESTDIR)$(htmldir)/$$f" || exit $$?; \
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
10 + for htm in "$$d2"/*; do \
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
11 + echo " $(INSTALL_DATA) '$$htm' '$(DESTDIR)$(htmldir)/$$f'"; \
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
12 + $(INSTALL_DATA) "$$htm" "$(DESTDIR)$(htmldir)/$$f" || exit $$?; \
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
13 + done; \
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
14 else \
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
15 list2="$$list2 $$d2"; \
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
16 fi; \