comparison src/default-octave-1-docinstall.patch @ 3721:933b99febcf1

Expand options to support 3 possible sources of octave * configure.ac: modify --enable-stable rule to --enable-octave=source (stable,alpha,default) * Makefile.am: modify OCTAVE_TARGET based on octave build value set in configure. * index.html: added master-octave information. * src/default-octave.mk: new file. * src/default-octave-1-docinstall.patch * dist-files.mk: add default-octave-1-docinstall.patch default-octave.mk * binary-dist-rules.mk: use OCTAVE_TARGET to decide on tarball/installer name
author John Donoghue <john.donoghue@ieee.org>
date Sun, 19 Oct 2014 22:58:20 -0400
parents
children
comparison
equal deleted inserted replaced
3720:5d0ed3ca5910 3721:933b99febcf1
1 diff -ur a/doc/interpreter/Makefile.in b/doc/interpreter/Makefile.in
2 --- a/doc/interpreter/Makefile.in 2013-12-27 17:01:52.000000000 -0500
3 +++ b/doc/interpreter/Makefile.in 2014-01-21 12:47:59.618865568 -0500
4 @@ -2435,8 +2435,10 @@
5 if test -d "$$d2"; then \
6 echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \
7 $(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
8 - echo " $(INSTALL_DATA) '$$d2'/* '$(DESTDIR)$(htmldir)/$$f'"; \
9 - $(INSTALL_DATA) "$$d2"/* "$(DESTDIR)$(htmldir)/$$f" || exit $$?; \
10 + for htm in "$$d2"/*; do \
11 + echo " $(INSTALL_DATA) '$$htm' '$(DESTDIR)$(htmldir)/$$f'"; \
12 + $(INSTALL_DATA) "$$htm" "$(DESTDIR)$(htmldir)/$$f" || exit $$?; \
13 + done; \
14 else \
15 list2="$$list2 $$d2"; \
16 fi; \