Skip to content

Commit

Permalink
Skip luajit subproject when installing
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
arch1t3cht committed Feb 9, 2025
1 parent 1769993 commit 07800be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ sudo apt install build-essential pkg-config meson ninja-build gettext intltool l
``` bash
meson setup build --prefix=/usr/local --buildtype=release --strip -Dsystem_luajit=false
meson compile -C build
meson install -C build
meson install -C build --skip-subprojects luajit
```

## Updating Moonscript
Expand Down
2 changes: 1 addition & 1 deletion tools/osx-bundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ echo
echo "---- Installing files ----"
CURRENT_DIR=`pwd`
cd ${BUILD_DIR}
ninja install
meson install --skip-subprojects luajit
cd ${CURRENT_DIR}

echo
Expand Down

0 comments on commit 07800be

Please sign in to comment.