diff --git a/Makefile.in b/Makefile.in index 21b25fdd5..e1e9fc5f1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1007,17 +1007,26 @@ all-dist: $(DIST_XALIA) ## ICU_VER := 6.8.2 -DIST_ICU_DIR := $(DST_DIR)/lib64/icu -DIST_ICU := $(OBJ)/.icu-dist -ICU_TARBALL := icu-$(ICU_VER)-x86_64.tar.xz - -$(DIST_ICU): $(SRC)/icu/$(ICU_TARBALL) - mkdir -p $(DIST_ICU_DIR) - rm -rf $(DIST_ICU_DIR)/*.dll - tar --no-same-owner -xf $< -C $(DIST_ICU_DIR) +DIST_ICU64_DIR := $(DST_DIR)/lib64/icu +DIST_ICU64 := $(OBJ)/.icu-dist64 +ICU64_TARBALL := icu-$(ICU_VER)-x86_64.tar.xz +DIST_ICU32_DIR := $(DST_DIR)/lib/icu +DIST_ICU32 := $(OBJ)/.icu-dist32 +ICU32_TARBALL := icu-$(ICU_VER)-x86.tar.xz + +$(DIST_ICU64): $(SRC)/icu/$(ICU64_TARBALL) + mkdir -p $(DIST_ICU64_DIR) + rm -rf $(DIST_ICU64_DIR)/*.dll + tar --no-same-owner -xf $< -C $(DIST_ICU64_DIR) touch $@ -all-dist: $(DIST_ICU) +$(DIST_ICU32): $(SRC)/icu/$(ICU32_TARBALL) + mkdir -p $(DIST_ICU32_DIR) + rm -rf $(DIST_ICU32_DIR)/*.dll + tar --no-same-owner -xf $< -C $(DIST_ICU32_DIR) + touch $@ + +all-dist: $(DIST_ICU64) $(DIST_ICU32) ## diff --git a/icu/icu-6.8.2-x86.tar.xz b/icu/icu-6.8.2-x86.tar.xz new file mode 100644 index 000000000..11572185e Binary files /dev/null and b/icu/icu-6.8.2-x86.tar.xz differ