mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-04-21 21:52:04 +02:00
Fix Linux/Windows makefiles always rerunning Ruby install
This commit is contained in:
parent
f26a9a8e1c
commit
e13209d042
2 changed files with 4 additions and 4 deletions
|
@ -325,9 +325,9 @@ $(DOWNLOADS)/openssl/Configure:
|
|||
$(CLONE) $(GITHUB)/openssl/openssl $(DOWNLOADS)/openssl --single-branch --branch OpenSSL_1_1_1i --depth 1
|
||||
|
||||
# Standard ruby
|
||||
ruby: init_dirs openssl $(BUILD_PREFIX)/libruby.so.3.1
|
||||
ruby: init_dirs openssl $(LIBDIR)/libruby.so.3.1
|
||||
|
||||
$(BUILD_PREFIX)/libruby.so.3.1: $(DOWNLOADS)/ruby/Makefile
|
||||
$(LIBDIR)/libruby.so.3.1: $(DOWNLOADS)/ruby/Makefile
|
||||
cd $(DOWNLOADS)/ruby; \
|
||||
make -j$(NPROC); make install
|
||||
|
||||
|
|
|
@ -312,9 +312,9 @@ $(DOWNLOADS)/openssl/Configure:
|
|||
$(CLONE) $(GITHUB)/openssl/openssl $(DOWNLOADS)/openssl --single-branch --branch OpenSSL_1_1_1i --depth 1
|
||||
|
||||
# Standard ruby
|
||||
ruby: init_dirs openssl $(BUILD_PREFIX)/$(RB_PREFIX)-ruby310.dll
|
||||
ruby: init_dirs openssl $(LIBDIR)/$(RB_PREFIX)-ruby310.dll
|
||||
|
||||
$(BUILD_PREFIX)/$(RB_PREFIX)-ruby310.dll: $(DOWNLOADS)/ruby/Makefile
|
||||
$(LIBDIR)/$(RB_PREFIX)-ruby310.dll: $(DOWNLOADS)/ruby/Makefile
|
||||
cd $(DOWNLOADS)/ruby; \
|
||||
make -j$(NPROC); make install
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue