Revert "OS_FOR_BUILD is not right do decide Host module name"

This reverts commit 39cfc4d8ad.

This OS_FOR_BUILD is to modify behavior in the cross-compilation case.
This commit is contained in:
Jan Holesovsky
2012-01-11 09:37:09 +01:00
parent d506bc43f6
commit ee24a236e1
3 changed files with 9 additions and 6 deletions

View File

@@ -56,7 +56,6 @@ $(eval $(call gb_Helper_register_executables,OOO, \
ifeq ($(OS),WNT)
$(eval $(call gb_Helper_register_executables,OOO,\
crashrep_com \
guiloader \
guistdio \
odbcconfig \
@@ -67,23 +66,27 @@ $(eval $(call gb_Helper_register_executables,OOO,\
sdraw \
simpress \
soffice \
soffice_bin \
smath \
sweb \
swriter \
unoinfo \
unopkg \
unopkg_bin \
unopkg_com \
unopkgio \
))
else
ifeq ($(OS_FOR_BUILD),WNT)
$(eval $(call gb_Helper_register_executables,OOO,\
soffice_bin \
unopkg_bin \
))
else
$(eval $(call gb_Helper_register_executables,OOO,\
soffice.bin \
unopkg.bin \
))
endif
ifeq ($(OS),MACOSX)

View File

@@ -25,7 +25,7 @@
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
ifeq ($(OS),WNT)
ifeq ($(OS_FOR_BUILD),WNT)
sofficebin := soffice_bin
else
sofficebin := soffice.bin

View File

@@ -25,7 +25,7 @@
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
ifeq ($(OS),WNT)
ifeq ($(OS_FOR_BUILD),WNT)
unopkgbin := unopkg_bin
else
unopkgbin := unopkg.bin