summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-08-08 03:06:50 (GMT)
committerTimothy Gu <timothygu99@gmail.com>2014-08-08 03:06:50 (GMT)
commit583d68055ef750bda87abfa042e97edc5348551e (patch)
tree57879ce569306a1ba5a5421ec615ee38cecfbc1a /src
parent754f485bd2f475b6d39ab2198e48b5c9e7fd4e29 (diff)
downloadmxe-583d68055ef750bda87abfa042e97edc5348551e.zip
mxe-583d68055ef750bda87abfa042e97edc5348551e.tar.gz
mxe-583d68055ef750bda87abfa042e97edc5348551e.tar.bz2
icu4c: fix wildcard
See http://www.cmcrossroads.com/article/trouble-wildcard $(wildcard) is evaluated at parse-time, not run-time. Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/icu4c.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/icu4c.mk b/src/icu4c.mk
index 19de795..cf8e269 100644
--- a/src/icu4c.mk
+++ b/src/icu4c.mk
@@ -38,7 +38,7 @@ endef
define $(PKG)_BUILD_SHARED
$($(PKG)_BUILD_COMMON)
# icu4c installs its DLLs to lib/. Move them to bin/.
- mv -fv $(wildcard $(PREFIX)/$(TARGET)/lib/icu*.dll) '$(PREFIX)/$(TARGET)/bin/'
+ mv -fv $(PREFIX)/$(TARGET)/lib/icu*.dll '$(PREFIX)/$(TARGET)/bin/'
endef
define $(PKG)_BUILD