Skip to content

Commit

Permalink
Wait a bit before invoking make install
Browse files Browse the repository at this point in the history
The same docker build sometimes works and sometimes doesn't. I have a
hunch that there is some timing involved here. Maybe the build command
isn't quite finished yet before that install command is invoked.

As a workaround we make the install command wait a little before
starting. This seems to help.
  • Loading branch information
egli committed Apr 20, 2020
1 parent 8a35460 commit 9dabbd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rockspecs/lua-louis-scm-0.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ build = {
"examples"
},
build_command = "LUA=$(LUA) CPPFLAGS=-I$(LUA_INCDIR) ./configure --prefix=$(PREFIX) --libdir=$(LIBDIR) --datadir=$(LUADIR) && make clean && make",
install_command = "make install"
install_command = "sleep 1 && make install"
}

0 comments on commit 9dabbd3

Please sign in to comment.