diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-09-19 00:06:24 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-09-22 11:08:31 +0200 |
commit | 5e300e9030d8d0730223b1eea1627953524cb58c (patch) | |
tree | 561bc85514f044fc05dee7c9dfce3617516c2c77 /scp2/source | |
parent | def1a59d18b8cb1bf351ae83f2f11acbe41a8229 (diff) |
odk: remove Package_bin, instead auto-install executables
This is somewhat annoying since it requires re-introducing stupid
directories in scp2, but if the executables should be put in INSTDIR
directly then the Package_bin needs to go.
Change-Id: I893694c7f9d4cb5b9ef8ec4a3d30e08536223740
Diffstat (limited to 'scp2/source')
-rw-r--r-- | scp2/source/sdkoo/sdkoo.scp | 30 |
1 files changed, 22 insertions, 8 deletions
diff --git a/scp2/source/sdkoo/sdkoo.scp b/scp2/source/sdkoo/sdkoo.scp index 9b1751983160..06fef8e4964b 100644 --- a/scp2/source/sdkoo/sdkoo.scp +++ b/scp2/source/sdkoo/sdkoo.scp @@ -18,6 +18,8 @@ #include "macros.inc" +#include "AutoInstall/sdk" + Installation gid_Installation_Sdk ProductName = "${PRODUCTNAME}"; ProductVersion = "${PRODUCTVERSION}"; @@ -29,7 +31,7 @@ Installation gid_Installation_Sdk #endif End -#if defined WNT +#ifdef WNT Directory gid_Dir_Sdkoo_Root ParentID = PREDEFINED_PROGDIR; @@ -39,10 +41,29 @@ End #endif +Directory gid_Dir_Sdkoo_Sdk +#ifdef WNT + ParentID = gid_Dir_Sdkoo_Root; +#else + ParentID = PREDEFINED_PROGDIR; +#endif +#ifdef MACOSX + DosName = "LibreOffice${PRODUCTVERSION}_SDK"; +#else + DosName = "sdk"; +#endif +End + +Directory gid_Dir_Sdkoo_Bin + ParentID = gid_Dir_Sdkoo_Sdk; + DosName = "bin"; +End + Module gid_Module_Root_SDK Name = "sdkoo"; Description = "sdkoo"; PackageInfo = "packinfo_sdkoo.txt"; + Files = (auto_sdk_ALL); End File gid_File_Pakage_odk_share_readme @@ -52,13 +73,6 @@ File gid_File_Pakage_odk_share_readme Styles = (FILELIST,USE_INTERNAL_RIGHTS); End -File gid_File_Package_odk_bin - TXT_FILE_BODY; - Dir = FILELIST_SDK_DIR; - Name = "odk_bin.filelist"; - Styles = (FILELIST,USE_INTERNAL_RIGHTS); -End - #if defined(WNT) File gid_File_Package_odk_cli TXT_FILE_BODY; |