forked from mirrors/tftp-hpa-google
[patch] fix parallel building of tftp-hpa
if you try to build tftp-hpa in parallel, it may fail as the tftp and tftpd subdirs may try to link before the libcommon.a has a chance to be generated in the common subdir trivial patch attached to address this -mike
This commit is contained in:
parent
0db17eedd3
commit
6124dcbe2d
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -17,8 +17,8 @@ SUB = lib common tftp tftpd
|
|||
|
||||
all: MCONFIG $(patsubst %, %.build, $(SUB))
|
||||
|
||||
tftp.build: lib.build
|
||||
tftpd.build: lib.build
|
||||
tftp.build: lib.build common.build
|
||||
tftpd.build: lib.build common.build
|
||||
|
||||
install: MCONFIG $(patsubst %, %.install, $(SUB))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue