diff options
author | Mike Pall <mike> | 2025-03-09 15:00:15 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2025-03-09 15:00:15 +0100 |
commit | b1179ea5f708c62aacc60235d28230112f419a69 (patch) | |
tree | 9e5baaf73736f2f6868128296f3de376999c5c72 | |
parent | 5eb95094686bdadc89200679bdffb833e72ab89d (diff) | |
download | luajit-b1179ea5f708c62aacc60235d28230112f419a69.tar.gz luajit-b1179ea5f708c62aacc60235d28230112f419a69.tar.bz2 luajit-b1179ea5f708c62aacc60235d28230112f419a69.zip |
Use dylib extension for iOS installs, too.
Reported by Andrey Filipenkov. #1336
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,7 +110,7 @@ else | |||
110 | endif | 110 | endif |
111 | TARGET_SYS?= $(HOST_SYS) | 111 | TARGET_SYS?= $(HOST_SYS) |
112 | 112 | ||
113 | ifeq (Darwin,$(TARGET_SYS)) | 113 | ifneq (,$(filter $(TARGET_SYS),Darwin iOS)) |
114 | INSTALL_SONAME= $(INSTALL_DYLIBNAME) | 114 | INSTALL_SONAME= $(INSTALL_DYLIBNAME) |
115 | INSTALL_SOSHORT1= $(INSTALL_DYLIBSHORT1) | 115 | INSTALL_SOSHORT1= $(INSTALL_DYLIBSHORT1) |
116 | INSTALL_SOSHORT2= $(INSTALL_DYLIBSHORT2) | 116 | INSTALL_SOSHORT2= $(INSTALL_DYLIBSHORT2) |