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>
This commit is contained in:
Timothy Gu 2014-08-07 20:06:50 -07:00
parent 754f485bd2
commit 583d68055e
1 changed files with 1 additions and 1 deletions

View File

@ -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