Fix installation path of LuaJIT
It wasn't actually found in /usr/local, so the resulting tarballs lacked luajit.
This commit is contained in:
parent
d646163384
commit
753cefc89b
2 changed files with 2 additions and 2 deletions
|
@ -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/
|
||||
|
|
|
@ -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/
|
||||
|
|
Loading…
Reference in a new issue