Fix installation path of LuaJIT

It wasn't actually found in /usr/local, so the resulting tarballs lacked luajit.
This commit is contained in:
Bart van Strien 2017-09-06 19:08:34 +02:00
parent d646163384
commit 753cefc89b
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ RUN cd /tmp/SDL2-2.0.5 && ./configure --prefix=/usr && make all install
# And build luajit
ADD LuaJIT-2.0.5.tar.gz /tmp/
RUN cd /tmp/LuaJIT-2.0.5 && make all install
RUN cd /tmp/LuaJIT-2.0.5 && make PREFIX=/usr all install
# Add the build script
ADD build.sh /build/

View File

@ -9,7 +9,7 @@ RUN cd /tmp/SDL2-2.0.5 && ./configure --prefix=/usr && make all install
# And build luajit
ADD LuaJIT-2.0.5.tar.gz /tmp/
RUN cd /tmp/LuaJIT-2.0.5 && make all install
RUN cd /tmp/LuaJIT-2.0.5 && make PREFIX=/usr all install
# Add the build script
ADD build.sh /build/