summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/at/files/fix_parallel_build_error.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/at/files/fix_parallel_build_error.patch')
-rw-r--r--meta/recipes-extended/at/files/fix_parallel_build_error.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-extended/at/files/fix_parallel_build_error.patch b/meta/recipes-extended/at/files/fix_parallel_build_error.patch
new file mode 100644
index 0000000000..877be35aaf
--- /dev/null
+++ b/meta/recipes-extended/at/files/fix_parallel_build_error.patch
@@ -0,0 +1,28 @@
1make -j was failing sometimesa like this
2| ccache i586-poky-linux-gcc -march=i586 --sysroot=/home/nitin/build/build0/tmp/sysroots/i586-poky-linux -I. -fexpensive-optimizations -fomit-frame-pointer -frename-registers -O2 -ggdb -feliminate-unused-debug-types -o atd atd.o daemon.o -lfl -lpam -Wl,-O1 -Wl,--as-needed
3| parsetime.l:5:19: fatal error: y.tab.h: No such file or directory
4| compilation terminated.
5| make: *** [lex.yy.o] Error 1
6| make: *** Waiting for unfinished jobs....
7
8Fixed the issue by adding a dependancy in the makefile.
9Nitin <nitin.a.kamble@intel.com>
102010/09/02
11
12Upstream-Status: Pending
13
14Signed-off-by: Scott Garman <scott.a.garman@intel.com>
15
16Index: at-3.1.12/Makefile.in
17===================================================================
18--- at-3.1.12.orig/Makefile.in
19+++ at-3.1.12/Makefile.in
20@@ -83,6 +83,8 @@ y.tab.c y.tab.h: parsetime.y
21 lex.yy.c: parsetime.l
22 $(LEX) -i parsetime.l
23
24+parsetime.l: y.tab.h
25+
26 atrun: atrun.in
27 configure
28