comparison src/stable-octave.mk @ 3423:c8e055d83b9f

Set start directory to user home (Bug #41220) * makeinst-script.sh: set outpath to USERPROFILE, use octave-gui and octave-cli for shortcuts, install qt.conf to bin folder. * src/octave.mk: copy libexec/octave-gui.exe to bin folder. * src/stable-octave.mk: copy libexec/octave-gui.exe to bin folder.
author John D <john.donoghue@ieee.org>
date Tue, 14 Jan 2014 21:30:29 +0000
parents 0182ffc974a1
children 7113585920c9
comparison
equal deleted inserted replaced
3422:2a0e9378056c 3423:c8e055d83b9f
112 ## We want both of these install steps so that we install in the 112 ## We want both of these install steps so that we install in the
113 ## location set by the configure --prefix option, and the other 113 ## location set by the configure --prefix option, and the other
114 ## in a directory tree that will have just Octave files. 114 ## in a directory tree that will have just Octave files.
115 $(MAKE) -C '$(1)/.build' -j '$(JOBS)' install DESTDIR='$(3)' 115 $(MAKE) -C '$(1)/.build' -j '$(JOBS)' install DESTDIR='$(3)'
116 116
117 if [ "x$(MXE_SYSTEM)" == "xmingw" ]; then \
118 cp '$(1)/.build/src/.libs/octave-gui.exe' '$(3)$(HOST_BINDIR)'; \
119 fi
120
117 if [ "x$(ENABLE_DOCS)" == "xyes" ]; then \ 121 if [ "x$(ENABLE_DOCS)" == "xyes" ]; then \
118 $(MAKE) -C '$(1)/.build' -j '$(JOBS)' DESTDIR=$(3) install-pdf install-html; \ 122 $(MAKE) -C '$(1)/.build' -j '$(JOBS)' DESTDIR=$(3) install-pdf install-html; \
119 fi 123 fi
120 124
121 if [ $(MXE_SYSTEM) != msvc ]; then \ 125 if [ $(MXE_SYSTEM) != msvc ]; then \