summaryrefslogtreecommitdiffstats
path: root/package/radvd
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2012-07-23 09:42:38 -0300
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2012-07-23 22:11:25 +0200
commit060622d6d1696f3d946557e116505f859d9b6d3f (patch)
treef2530821cb91dfb376e8dd0333b2edf47a354bee /package/radvd
parent701940770b658e25cfe7219e35e808ba62052843 (diff)
downloadbuildroot-novena-060622d6d1696f3d946557e116505f859d9b6d3f.tar.gz
buildroot-novena-060622d6d1696f3d946557e116505f859d9b6d3f.zip
radvd: fix high jobcount build failure
Fix build failure: http://autobuild.buildroot.org/results/48aabbc41dff2e4196dfd6e1e942cf6dbe050deb/build-end.log because of a typo/missed update in the Makefile Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/radvd')
-rw-r--r--package/radvd/radvd-highjob.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/package/radvd/radvd-highjob.patch b/package/radvd/radvd-highjob.patch
new file mode 100644
index 000000000..594543548
--- /dev/null
+++ b/package/radvd/radvd-highjob.patch
@@ -0,0 +1,27 @@
+From ce4911c13a3ab6877c0288c8a1874decb5d0e90a Mon Sep 17 00:00:00 2001
+From: Gustavo Zacarias <gustavo@zacarias.com.ar>
+Date: Mon, 23 Jul 2012 09:14:24 -0300
+Subject: [PATCH] Makefile: fix high jobcount build failures
+
+gram.h is a dependency for scanner.c rather than scanner.o which is
+unused.
+
+Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
+---
+ Makefile.am | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/Makefile.am b/Makefile.am
+index 04b834b..8a90ca7 100644
+--- a/Makefile.am
++++ b/Makefile.am
+@@ -131,5 +131,5 @@ dist-hook:
+ rm -f $(distdir)/gram.h
+ rm -f $(distdir)/scanner.c
+
+-scanner.o: gram.h
++scanner.c: gram.h
+
+--
+1.7.8.6
+