diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-08-20 13:15:03 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-08-20 14:19:27 +0200 |
commit | af7ce81494df6c1f23af1ee14adf4aa55132b5bb (patch) | |
tree | e0f31db62003f117069abe9ea21f87772742128f /odk | |
parent | 56e95f8e20b20680d025f3ecbeb4cc5306085b1e (diff) |
Fix EXTENSION_PLATFORM for Windows x86_64
Change-Id: I7fbe1963aff666205dbc9405e94d6093fb9a5a48
Reviewed-on: https://gerrit.libreoffice.org/77804
Reviewed-by: Vasily Melenchuk <vasily.melenchuk@cib.de>
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'odk')
-rw-r--r-- | odk/settings/platform.mk | 6 |
1 files changed, 5 insertions, 1 deletions
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 |