From ac9f0757f9891333a1e4fb8e558ceabbc6258427 Mon Sep 17 00:00:00 2001 From: matthiasmiller Date: Sat, 21 Jan 2006 16:12:53 +0000 Subject: [PATCH] Because the Share files are nested within the target files on the Mac, they must be installed before the target to prevent them from being deleted when the target is installed. Also correcting the installation path for the Share files on the Mac. git-svn-id: https://svn.code.sf.net/p/keepassx/code/trunk@13 b624d157-de02-0410-bad0-e51aec6abb33 --- src/src.pro | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/src.pro b/src/src.pro index 4544244..5a54d01 100755 --- a/src/src.pro +++ b/src/src.pro @@ -3,14 +3,14 @@ # Unterordner relativ zum Projektordner: ./src # Das Target ist eine Anwendung: ../bin/keepass -INSTALLS += Share \ - target +INSTALLS += target \ + Share Share.files += ../share/keepass/* -unix{ Share.path = /usr/local/share/keepass - target.path = /usr/local/bin +unix{ target.path = /usr/local/bin + Share.path = /usr/local/share/keepass } -macx{ Share.path = /Applications/keepass.app/Contents - target.path = /Applications +macx{ target.path = /Applications + Share.path = /Applications/keepass.app/Contents/share/keepass } FORMS += forms/EditGroupDlg.ui \ forms/SearchDlg.ui \