blob: d85178d7140e305db7323bacf00c3c044d90921e [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001From c23cc112a480f90950de5cf1de09b1a7e732bf21 Mon Sep 17 00:00:00 2001
2From: Robert Yang <liezhi.yang@windriver.com>
3Date: Mon, 15 Dec 2014 18:31:13 -0800
4Subject: [PATCH] rpc.rusersd/Makefile: fix parallel build issue
5
6Fixed:
7rusers.x: No such file or directory
8Makefile:44: recipe for target 'rusers_xdr.c' failed
9
10Upstream-Status: Pending
11
12Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
13---
14 rpc.rusersd/Makefile | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/rpc.rusersd/Makefile b/rpc.rusersd/Makefile
18index 792f528..65a424a 100644
19--- a/rpc.rusersd/Makefile
20+++ b/rpc.rusersd/Makefile
21@@ -40,5 +40,5 @@ rusers.x:
22 rusers.h: $(RUSERSX) rusers.x
23 $(RPCGEN) -h -o rusers.h rusers.x
24
25-rusers_xdr.c: $(RUSERSX)
26+rusers_xdr.c: $(RUSERSX) rusers.x
27 $(RPCGEN) -c -C -o rusers_xdr.c rusers.x
28--
291.7.9.5
30