[Libreoffice-commits] core.git: Branch 'feature/cib_contract3756b' - odk/settings

Stephan Bergmann (via logerrit) logerrit at kemper.freedesktop.org
Fri Dec 6 13:45:20 UTC 2019


 odk/settings/platform.mk |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 35eb0d56ff37b2c1dbfb81a87a9992cf9944c92f
Author:     Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Tue Aug 20 13:15:03 2019 +0200
Commit:     Thorsten Behrens <Thorsten.Behrens at CIB.de>
CommitDate: Fri Dec 6 14:43:43 2019 +0100

    Fix EXTENSION_PLATFORM for Windows x86_64
    
    Change-Id: I7fbe1963aff666205dbc9405e94d6093fb9a5a48
    Reviewed-on: https://gerrit.libreoffice.org/77804
    Reviewed-by: Vasily Melenchuk <vasily.melenchuk at cib.de>
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
    (cherry picked from commit af7ce81494df6c1f23af1ee14adf4aa55132b5bb)

diff --git a/odk/settings/platform.mk b/odk/settings/platform.mk
index 7e3b86c62a2c..6980a72715d0 100644
--- a/odk/settings/platform.mk
+++ b/odk/settings/platform.mk
@@ -54,7 +54,11 @@ else
         EXTENSION_PLATFORM=solaris_x86
     else
     ifeq "$(UNOPKG_PLATFORM)" "Windows"
-        EXTENSION_PLATFORM=windows_x86
+        ifeq "$(PROCTYPE)" "x86_64"
+            EXTENSION_PLATFORM=windows_x86_64
+        else
+            EXTENSION_PLATFORM=windows_x86
+        endif
     endif
     endif
     endif


More information about the Libreoffice-commits mailing list