summaryrefslogtreecommitdiff
path: root/ports/lua
diff options
context:
space:
mode:
authordzwdz2022-08-29 13:57:47 +0200
committerdzwdz2022-08-29 13:58:02 +0200
commit4ae57a7fb13e68c5e6f1c1246a867555dbd986db (patch)
tree3bee7f7eee21e9f2ed3b9f07dd1671a1c230cf66 /ports/lua
parentedb7fc07bf93e4a1883cccf45ad7a4b2cbf390d9 (diff)
user/lua: implement the bare minimum for it to link and "run"
Diffstat (limited to 'ports/lua')
-rw-r--r--ports/lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/lua b/ports/lua
index fc8e8a7..6517954 100644
--- a/ports/lua
+++ b/ports/lua
@@ -14,7 +14,7 @@ prep() {
}
case $1 in
- install) (prep; make generic "CC=cc" "MYCFLAGS=-Werror") ;;
+ install) (prep; make generic "CC=cc" "MYCFLAGS=-Werror" && make install "INSTALL_TOP=$PREFIX") ;;
clean) (prep; make clean) ;;
*) echo "usage: $0 install|clean"; false ;;
esac \ No newline at end of file