diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2013-05-15 11:48:43 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2013-05-15 11:53:33 +0300 |
commit | 050a51b69e89e230e157be52d8b23862f3c06ba8 (patch) | |
tree | e3d81283c1d182a034cc7ba1b40b89c7fba376ca /libwpg | |
parent | 63899dd0421516da758b7d9a0c276e9cfb4846f5 (diff) |
Fix MSVC build
Have to pass AR=lib.exe and SED=sed.exe on the configure command line,
otherwise for some reason it doesn't know what archiver to use, and
thinks it can't find a sed that does not truncate output.
Change-Id: I1ce211119e62b6ecf6a2fc8fc89cdde2c7bb985a
Diffstat (limited to 'libwpg')
-rw-r--r-- | libwpg/ExternalProject_libwpg.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libwpg/ExternalProject_libwpg.mk b/libwpg/ExternalProject_libwpg.mk index 226474cd4281..5c858cb6f642 100644 --- a/libwpg/ExternalProject_libwpg.mk +++ b/libwpg/ExternalProject_libwpg.mk @@ -30,6 +30,7 @@ $(call gb_ExternalProject_get_state_target,libwpg,build) : --disable-debug \ --disable-werror \ $(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \ + $(if $(filter MSC,$(COM)),AR=lib.exe SED=sed.exe) \ && (cd $(EXTERNAL_WORKDIR)/src/lib && $(MAKE)) \ ) |