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
This commit is contained in:
matthiasmiller 2006-01-21 16:12:53 +00:00
parent c646a94f3c
commit ac9f0757f9
1 changed files with 6 additions and 6 deletions

View File

@ -3,14 +3,14 @@
# Unterordner relativ zum Projektordner: ./src # Unterordner relativ zum Projektordner: ./src
# Das Target ist eine Anwendung: ../bin/keepass # Das Target ist eine Anwendung: ../bin/keepass
INSTALLS += Share \ INSTALLS += target \
target Share
Share.files += ../share/keepass/* Share.files += ../share/keepass/*
unix{ Share.path = /usr/local/share/keepass unix{ target.path = /usr/local/bin
target.path = /usr/local/bin Share.path = /usr/local/share/keepass
} }
macx{ Share.path = /Applications/keepass.app/Contents macx{ target.path = /Applications
target.path = /Applications Share.path = /Applications/keepass.app/Contents/share/keepass
} }
FORMS += forms/EditGroupDlg.ui \ FORMS += forms/EditGroupDlg.ui \
forms/SearchDlg.ui \ forms/SearchDlg.ui \