Skip to content

Commit 07800be

Browse files
committed
Skip luajit subproject when installing
After switching to the upstream luajit wrap, luajit is now installed by default. Most other wrapdb subprojects will also be installed by default, but for those it is not always clear whether they should be skipped. Fixes #321.
1 parent 1769993 commit 07800be

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ sudo apt install build-essential pkg-config meson ninja-build gettext intltool l
105105
``` bash
106106
meson setup build --prefix=/usr/local --buildtype=release --strip -Dsystem_luajit=false
107107
meson compile -C build
108-
meson install -C build
108+
meson install -C build --skip-subprojects luajit
109109
```
110110

111111
## Updating Moonscript

tools/osx-bundle.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ echo
5353
echo "---- Installing files ----"
5454
CURRENT_DIR=`pwd`
5555
cd ${BUILD_DIR}
56-
ninja install
56+
meson install --skip-subprojects luajit
5757
cd ${CURRENT_DIR}
5858

5959
echo

0 commit comments

Comments
 (0)