summaryrefslogtreecommitdiffstats
path: root/solenv/gbuild/GeneratedPackage.mk
Commit message (Collapse)AuthorAgeFilesLines
* ';' as a delimiter sometimes does not work for unknown reasonMatúš Kukan2013-09-121-3/+3
| | | | | | Or rather it does work only sometimes. Change-Id: I97efd718dc6fcf370ca6456432b275e563f62f62
* use ';' instead of ':' to separate two parts of a stringMatúš Kukan2013-09-121-3/+3
| | | | | | ':' is used in a path to files on Windows Change-Id: I3ca283a575bb753cbcd4dfd350947710efad3a62
* Towards a working instdir for Mac OS XStephan Bergmann2013-09-111-7/+7
| | | | | | | | | | | | | | | | | Introduced gb_INSTROOT, which is the same as $(INSTDIR) except for Mac OS X, where it is $(INSTDIR)/LibreOffice.app/Contents. Most stuff ends up there (so most occurrences of $(INSTDIR) have been replaced with $(gb_INSTROOT)), but SDK- related stuff goes to $(INSTDIR)/$(gb_Package_SDKDIRNAME). (And GeneratedPackage needed to be made more flexible, to allow for packages that go into either of those two places.) For Android and iOS, gb_INSTROOT probably still needs to be set. The most obvious missing thing yet to make instdir work for Mac OS X is the instdir/*/LibreOffice.app/Contents/ure/ vs. instdir/*/LibreOffice.app/Contents/ure-link/ split. Change-Id: I4478edd27b14c92c96d92d5169bdca3ec50d78f5
* Better error outputStephan Bergmann2013-08-291-1/+1
| | | | Change-Id: I728507ee23015a9aab2423226fdd737749be0166
* Use cp -R instead of cp -r for OS X compatibilityTor Lillqvist2013-05-161-1/+1
| | | | | | | | | | | | | | In GNU cp, -r and -R are equivalent. For the cp in OS X: "Historic versions of the cp utility had a -r option. This implementation supports that option; however, its use is strongly discouraged, as it does not correctly copy special files, symbolic links, or fifo's." Using cp -r meant that the symlinks in the LibreOfficePython.framework were not properly re-created in instdir. Change-Id: I8367269a77b876c063fd21ceb919936215fb7d37
* install python framework using filelistDavid Tardon2013-05-041-0/+8
| | | | | | | Change-Id: Ib3a98d8268d0a1973d5f06b993c293fd41ba47e1 Reviewed-on: https://gerrit.libreoffice.org/3779 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
* gbuild: add Package equiv. for copying whole dirsDavid Tardon2013-05-041-0/+111
This is in preparation for using doxygen to generate IDL docs. Because the file names generated by doxygen are essentially random, it is not possible to use a Package to deliver them. And we really do not want to go back to using Zip, as unpacking slows the installation down. Change-Id: I5f4aa6bf10c6aab30a5b1870e04dca723c123317 Reviewed-on: https://gerrit.libreoffice.org/3774 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>