diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-06-02 01:35:41 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-06-09 17:05:51 +0200 |
commit | 548da05c53f007624d31e6ba46b4769dae9c4035 (patch) | |
tree | 3d5d4f41ba54684d1d1d17a0b34d557cf1378de5 /RepositoryExternal.mk | |
parent | 0a9f1cf88a9e891c3e33e371b57e29364fd4f00b (diff) |
curl: work around mysterious xcopy failure
When building with Win32 make, the xcopy at the end of the build fails
with "Invalid arguments" error, which is clearly wrong, since the
arguments are exactly the same as before, and furthermore curl is not
built with GNU make at all, but with nmake! W-T-F?
Change-Id: Idc0b362202e1d14722573662bebeda0bc7070660
Diffstat (limited to 'RepositoryExternal.mk')
-rw-r--r-- | RepositoryExternal.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk index 443ea6f52f8e..fc8c8f70a881 100644 --- a/RepositoryExternal.mk +++ b/RepositoryExternal.mk @@ -2449,7 +2449,7 @@ $(call gb_LinkTarget_set_include,$(1),\ ifeq ($(COM),MSC) $(call gb_LinkTarget_add_libs,$(1),\ - $(call gb_UnpackedTarball_get_dir,curl)/lib/libcurl$(if $(MSVC_USE_DEBUG_RUNTIME),d)_imp.lib \ + $(call gb_UnpackedTarball_get_dir,curl)/lib/$(if $(MSVC_USE_DEBUG_RUNTIME),debug-dll,release-dll)/libcurl$(if $(MSVC_USE_DEBUG_RUNTIME),d)_imp.lib \ ) else $(call gb_LinkTarget_add_libs,$(1),\ |