aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-01-13 10:24:27 -0800
committerH. Peter Anvin <hpa@zytor.com>2007-01-13 10:24:27 -0800
commit6124dcbe2d7c5915bd08117e572469754ec331eb (patch)
tree02e5fa33e5746e7700ef69d0506b6282d1df8911
parent0db17eedd3c56b4f5be829041d39d5fe02b080c3 (diff)
downloadtftp-hpa-6124dcbe2d7c5915bd08117e572469754ec331eb.tar.gz
[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
-rw-r--r--Makefile4
1 files 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))