mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
neard: fix parallel issue
There might be no src dir if the src/builtin.h runs earlier, create it to fix the race issue: src/genbuiltin nfctype1 nfctype2 nfctype3 nfctype4 p2p > src/builtin.h /bin/sh: src/builtin.h: No such file or directory (From OE-Core rev: 4b6762b924a561febede13b85330309dbf75da19) (From OE-Core rev: 3d0f678cb5796066798394238be4b12b09d2a983) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
f7ba14a571
commit
33cda871d3
@@ -0,0 +1,33 @@
|
|||||||
|
From 43acc56d5506c7e318f717fb3634bc16e3438913 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Robert Yang <liezhi.yang@windriver.com>
|
||||||
|
Date: Thu, 15 Jan 2015 18:12:07 -0800
|
||||||
|
Subject: [PATCH] Makefile.am: fix parallel issue
|
||||||
|
|
||||||
|
There might be no src dir if src/builtin.h runs earlier, create it to
|
||||||
|
fix the race issue:
|
||||||
|
|
||||||
|
src/genbuiltin nfctype1 nfctype2 nfctype3 nfctype4 p2p > src/builtin.h
|
||||||
|
/bin/sh: src/builtin.h: No such file or directory
|
||||||
|
|
||||||
|
Upstream-Status: Pending
|
||||||
|
|
||||||
|
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
|
||||||
|
---
|
||||||
|
Makefile.am | 1 +
|
||||||
|
1 file changed, 1 insertion(+)
|
||||||
|
|
||||||
|
diff --git a/Makefile.am b/Makefile.am
|
||||||
|
index 3241311..a43eaa2 100644
|
||||||
|
--- a/Makefile.am
|
||||||
|
+++ b/Makefile.am
|
||||||
|
@@ -164,6 +164,7 @@ MAINTAINERCLEANFILES = Makefile.in \
|
||||||
|
src/plugin.$(OBJEXT): src/builtin.h
|
||||||
|
|
||||||
|
src/builtin.h: src/genbuiltin $(builtin_sources)
|
||||||
|
+ $(AM_V_at)$(MKDIR_P) src
|
||||||
|
$(AM_V_GEN)$(srcdir)/src/genbuiltin $(builtin_modules) > $@
|
||||||
|
|
||||||
|
$(src_neard_OBJECTS) \
|
||||||
|
--
|
||||||
|
1.7.9.5
|
||||||
|
|
||||||
@@ -4,6 +4,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/network/nfc/${BPN}-${PV}.tar.xz \
|
|||||||
file://parallel-build.patch \
|
file://parallel-build.patch \
|
||||||
file://neard.in \
|
file://neard.in \
|
||||||
file://neard.service.in \
|
file://neard.service.in \
|
||||||
|
file://Makefile.am-fix-parallel-issue.patch \
|
||||||
"
|
"
|
||||||
SRC_URI[md5sum] = "692ba2653d60155255244c87396c486b"
|
SRC_URI[md5sum] = "692ba2653d60155255244c87396c486b"
|
||||||
SRC_URI[sha256sum] = "6ea724b443d39d679168fc7776a965d1f64727c3735391df2c01469ee7cd8cca"
|
SRC_URI[sha256sum] = "6ea724b443d39d679168fc7776a965d1f64727c3735391df2c01469ee7cd8cca"
|
||||||
|
|||||||
Reference in New Issue
Block a user