diff options
Diffstat (limited to 'meta-networking/recipes-netkit')
2 files changed, 31 insertions, 0 deletions
diff --git a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers/rpc.rusersd-Makefile-fix-parallel-build-issue.patch b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers/rpc.rusersd-Makefile-fix-parallel-build-issue.patch new file mode 100644 index 000000000..d85178d71 --- /dev/null +++ b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers/rpc.rusersd-Makefile-fix-parallel-build-issue.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | From c23cc112a480f90950de5cf1de09b1a7e732bf21 Mon Sep 17 00:00:00 2001 | ||
2 | From: Robert Yang <liezhi.yang@windriver.com> | ||
3 | Date: Mon, 15 Dec 2014 18:31:13 -0800 | ||
4 | Subject: [PATCH] rpc.rusersd/Makefile: fix parallel build issue | ||
5 | |||
6 | Fixed: | ||
7 | rusers.x: No such file or directory | ||
8 | Makefile:44: recipe for target 'rusers_xdr.c' failed | ||
9 | |||
10 | Upstream-Status: Pending | ||
11 | |||
12 | Signed-off-by: Robert Yang <liezhi.yang@windriver.com> | ||
13 | --- | ||
14 | rpc.rusersd/Makefile | 2 +- | ||
15 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
16 | |||
17 | diff --git a/rpc.rusersd/Makefile b/rpc.rusersd/Makefile | ||
18 | index 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 | -- | ||
29 | 1.7.9.5 | ||
30 | |||
diff --git a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb index e59f7a7d7..c930842ee 100644 --- a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb +++ b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb | |||
@@ -8,6 +8,7 @@ DEPENDS = " tcp-wrappers libtirpc rpcbind" | |||
8 | 8 | ||
9 | SRC_URI = "${DEBIAN_MIRROR}/main/n/${BPN}/${BPN}_${PV}.orig.tar.gz;name=archive \ | 9 | SRC_URI = "${DEBIAN_MIRROR}/main/n/${BPN}/${BPN}_${PV}.orig.tar.gz;name=archive \ |
10 | ${DEBIAN_MIRROR}/main/n/${BPN}/${BPN}_${PV}-8.diff.gz;name=patch8 \ | 10 | ${DEBIAN_MIRROR}/main/n/${BPN}/${BPN}_${PV}-8.diff.gz;name=patch8 \ |
11 | file://rpc.rusersd-Makefile-fix-parallel-build-issue.patch \ | ||
11 | " | 12 | " |
12 | 13 | ||
13 | SRC_URI[archive.md5sum] = "dc99a80b9fde2ab427c874f88f1c1602" | 14 | SRC_URI[archive.md5sum] = "dc99a80b9fde2ab427c874f88f1c1602" |