[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:
Mike Frysinger 2007-01-13 10:24:27 -08:00 committed by H. Peter Anvin
parent 0db17eedd3
commit 6124dcbe2d

View file

@ -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))