Skip to content

Commit

Permalink
Makefile.in: Distribute ICU dlls (32 bit).
Browse files Browse the repository at this point in the history
CW-Bug-Id: #24402
  • Loading branch information
Paul Gofman authored and ivyl committed Nov 21, 2024
1 parent 4ea1be2 commit b1a751c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -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)


##
Expand Down
Binary file added icu/icu-6.8.2-x86.tar.xz
Binary file not shown.

0 comments on commit b1a751c

Please sign in to comment.