Skip to content

Commit

Permalink
Makefile: Fix dependency error that broke 'make -j'
Browse files Browse the repository at this point in the history
There was a mistake in the LuaJIT dependency that would cause a
parallel make to build. (It would expect to find the LuaJIT Makefile
while asynchronously cloning the repo.)

Fixes #471.
  • Loading branch information
lukego committed May 19, 2015
1 parent ce5142d commit ab563cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ install_compute_node: install
install -D src/scripts/sysv/init.d/snabb-nfv-sync-agent ${PREFIX}/etc/init.d/snabb-nfv-sync-agent
install -D src/scripts/sysv/default/snabb-nfv-sync-agent ${PREFIX}/etc/default/snabb-nfv-sync-agent

$(LUAJIT): check_luajit deps/luajit/Makefile
$(LUAJIT): check_luajit
@echo 'Building LuaJIT'
@(cd deps/luajit && \
$(MAKE) PREFIX=`pwd`/usr/local \
Expand Down

0 comments on commit ab563cc

Please sign in to comment.