diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-06-08 07:54:11 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-08 07:54:11 -0700 |
commit | bded22f2f6ecaa09bdf14308801d32f04aed4741 (patch) | |
tree | 4b1b4f8b9d7c144871c2dab4dc750e07e096a584 /subsurface-install.pri | |
parent | 439c2e0473d85302e94487f3e244ddc792cdf1a5 (diff) | |
download | subsurface-bded22f2f6ecaa09bdf14308801d32f04aed4741.tar.gz |
HTML export: fix packaging of theme dir
I was confused by the function name getSubsurfaceDataPath() - it does not
find paths relative to the "data" folder, if finds the path where we might
install folders like "data", "translations", or "theme".
"data" is for some reason where we install the "marbledata" files.
Therefore on both Mac and Windows we need to put the "theme" directory
next to the "data" directory, not below it.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface-install.pri')
-rw-r--r-- | subsurface-install.pri | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subsurface-install.pri b/subsurface-install.pri index f1f8f983b..db1c0ff6a 100644 --- a/subsurface-install.pri +++ b/subsurface-install.pri @@ -31,7 +31,7 @@ mac { datadir = Contents/Resources/share marbledir.path = Contents/Resources/data - theme.path = Contents/Resources/data + theme.path = Contents/Resources doc.path = $$datadir/Documentation translation.path = Contents/Resources/translations qttranslation.path = Contents/Resources/translations @@ -62,7 +62,7 @@ mac { deploy.CONFIG += no_check_exist target.path = $$WINDOWSSTAGING marbledir.path = $$WINDOWSSTAGING/data - theme.path = $$WINDOWSSTAGING/data + theme.path = $$WINDOWSSTAGING INSTALLS += deploy marbledir target doc theme translation.path = $$WINDOWSSTAGING/translations |