diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-10-26 12:56:24 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-10-26 12:57:39 +0200 |
commit | aed681368255b67f1c9de8d501d171a784118dd3 (patch) | |
tree | 2eb4759f424aa38f638cd2d940b0bbc75b93a74d /expat | |
parent | a4b822e5e33a2bffdff66af483d838a201aea016 (diff) |
expat: GNUCOPY is empty on Darwin, use cp instead
Change-Id: I96893aa0aed6144c3888a85afe64f90d969e9448
Diffstat (limited to 'expat')
-rw-r--r-- | expat/UnpackedTarball_expat.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/expat/UnpackedTarball_expat.mk b/expat/UnpackedTarball_expat.mk index ea9d41f125db..d9fb82cefb54 100644 --- a/expat/UnpackedTarball_expat.mk +++ b/expat/UnpackedTarball_expat.mk @@ -23,11 +23,11 @@ $(eval $(call gb_UnpackedTarball_add_patches,expat,\ # on windows 64 bit platform we need to link it twice: # with $(LINK_X64_BINARY) and with $(gb_LINK). $(eval $(call gb_UnpackedTarball_set_post_action,expat,\ - $(GNUCOPY) lib/xmlparse.c lib/unicode_xmlparse.c \ - $(if $(filter $(BUILD_X64),TRUE), && \ - $(GNUCOPY) lib/xmlparse.c lib/xmlparse_x64.c && \ - $(GNUCOPY) lib/xmltok.c lib/xmltok_x64.c && \ - $(GNUCOPY) lib/xmlrole.c lib/xmlrole_x64.c)\ + cp lib/xmlparse.c lib/unicode_xmlparse.c \ + $(if $(filter $(BUILD_X64),TRUE), && \ + cp lib/xmlparse.c lib/xmlparse_x64.c && \ + cp lib/xmltok.c lib/xmltok_x64.c && \ + cp lib/xmlrole.c lib/xmlrole_x64.c) \ )) # vim: set noet sw=4 ts=4: |