From 6124dcbe2d7c5915bd08117e572469754ec331eb Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 13 Jan 2007 10:24:27 -0800 Subject: [PATCH] [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 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8f78839..9ff12d8 100644 --- a/Makefile +++ b/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))