diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-01-13 10:24:27 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-01-13 10:24:27 -0800 |
commit | 6124dcbe2d7c5915bd08117e572469754ec331eb (patch) | |
tree | 02e5fa33e5746e7700ef69d0506b6282d1df8911 | |
parent | 0db17eedd3c56b4f5be829041d39d5fe02b080c3 (diff) | |
download | tftp-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)) |