From a9b068c5f3fda984c22ec6e1c9a60a32ab32c8fb Mon Sep 17 00:00:00 2001 From: Abid Maqbool Date: Wed, 18 Sep 2024 02:05:19 +0500 Subject: [PATCH] try to extract files in temp form libjdk.lib --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d9d1822..2a3965d 100644 --- a/Makefile +++ b/Makefile @@ -92,7 +92,7 @@ ifeq ($(OS), windows) mkdir -p $$TMPDIR; \ $(AR) t $(JDKLIB) | xargs -n 1 dirname | sort -u > dirlist.txt; \ xargs mkdir -p < dirlist.txt; \ - (cd $$TMPDIR && $(AR) x $(JDKLIB)); \ + (cd $$TMPDIR && mkdir -p temp && $(AR) x --output temp $(JDKLIB)); ls temp; \ $(AR) $(ARFLAGS) $@ $(shell find D:/a/mobile/mobile/build/windows-x64/support/native -type f -name '*.*') $^; \ else \ echo "Existing library not found. Creating static library with object files only."; \