annotate src/stable-octave-1-docinstall.patch @ 4066:0962acdde3be

builld: allow out of source build * Makefile.in: add TOP_BUILD_DIR var and use TOP_DIR=srcdir, TOP_BUILD_DIR=builddir, modify paths to use TOP_DIR where needed * binary-dist-rules.mk: use TOP_DIR and TOP_BUILD_DIR where needed * makeinst-script.sh: use script path to determine TOPDIR, use TOPDIR where needed * src/default-octave.mk: install octave-version to builddir * src/stable-octave.mk: install octave-version to builddir * src/octave.mk: install octave-version to builddir * tools/set-mxe-env.sh.in: update fir builddir and srcdir use
author John Donoghue
date Wed, 23 Dec 2015 08:11:04 -0500
parents 7113585920c9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3438
7113585920c9 avoid argument list too long error when installing octave html docs
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 diff -ur a/doc/interpreter/Makefile.in b/doc/interpreter/Makefile.in
7113585920c9 avoid argument list too long error when installing octave html docs
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 --- a/doc/interpreter/Makefile.in 2013-12-27 17:01:52.000000000 -0500
7113585920c9 avoid argument list too long error when installing octave html docs
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3 +++ b/doc/interpreter/Makefile.in 2014-01-21 12:47:59.618865568 -0500
7113585920c9 avoid argument list too long error when installing octave html docs
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 @@ -2435,8 +2435,10 @@
7113585920c9 avoid argument list too long error when installing octave html docs
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 if test -d "$$d2"; then \
7113585920c9 avoid argument list too long error when installing octave html docs
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \
7113585920c9 avoid argument list too long error when installing octave html docs
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 $(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
7113585920c9 avoid argument list too long error when installing octave html docs
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 - echo " $(INSTALL_DATA) '$$d2'/* '$(DESTDIR)$(htmldir)/$$f'"; \
7113585920c9 avoid argument list too long error when installing octave html docs
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 - $(INSTALL_DATA) "$$d2"/* "$(DESTDIR)$(htmldir)/$$f" || exit $$?; \
7113585920c9 avoid argument list too long error when installing octave html docs
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 + for htm in "$$d2"/*; do \
7113585920c9 avoid argument list too long error when installing octave html docs
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 + echo " $(INSTALL_DATA) '$$htm' '$(DESTDIR)$(htmldir)/$$f'"; \
7113585920c9 avoid argument list too long error when installing octave html docs
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 + $(INSTALL_DATA) "$$htm" "$(DESTDIR)$(htmldir)/$$f" || exit $$?; \
7113585920c9 avoid argument list too long error when installing octave html docs
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 + done; \
7113585920c9 avoid argument list too long error when installing octave html docs
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 else \
7113585920c9 avoid argument list too long error when installing octave html docs
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 list2="$$list2 $$d2"; \
7113585920c9 avoid argument list too long error when installing octave html docs
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 fi; \