blob: 797352579b6a339d1be99f12152306b063fc4b7c [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001From daf89d272e51b2153015ce7f54ab0b86182e64c1 Mon Sep 17 00:00:00 2001
2From: Robert Yang <liezhi.yang@windriver.com>
3Date: Wed, 28 Jan 2015 18:50:23 -0800
4Subject: [PATCH] Makefile: fix for parallel build
5
6Fixed:
7make: *** No rule to make target `cflags', needed by `tcpd.o'. Stop.
8
9Let "cflags" depend on config-check which generates cflgas will fix the
10problem.
11
12Also fixed:
13Fatal error: can't create shared/hosts_access.o: No such file or directory
14
15Upstream-Status: Pending
16
17Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
18---
19 Makefile | 5 ++++-
20 1 file changed, 4 insertions(+), 1 deletion(-)
21
22diff --git a/Makefile b/Makefile
23index fe5e732..f468751 100644
24--- a/Makefile
25+++ b/Makefile
26@@ -714,6 +714,7 @@ KIT = README miscd.c tcpd.c fromhost.c hosts_access.c shell_cmd.c \
27 LIB = libwrap.a
28
29 shared/%.o: %.c
30+ [ -d shared ] || mkdir -p shared
31 $(CC) $(CFLAGS) $(SHCFLAGS) -c $< -o $@
32
33 SOMAJOR = 0
34@@ -730,6 +731,8 @@ SHLIB_OBJ= $(addprefix shared/, $(LIB_OBJ));
35
36 all other: config-check tcpd tcpdmatch try-from safe_finger tcpdchk $(LIB)
37
38+cflags: config-check
39+
40 # Invalidate all object files when the compiler options (CFLAGS) have changed.
41
42 config-check:
43@@ -739,7 +742,7 @@ config-check:
44 then rm cflags.new ; \
45 else mv cflags.new cflags ; \
46 fi >/dev/null 2>/dev/null
47- @if [ ! -d shared ]; then mkdir shared; fi
48+ @[ -d shared ] || mkdir -p shared
49
50 $(LIB): $(LIB_OBJ)
51 rm -f $(LIB)
52--
531.7.9.5
54