summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-support/dnsmasq/files
diff options
context:
space:
mode:
authorChristopher Larson <chris_larson@mentor.com>2014-08-11 09:12:25 -0700
committerMartin Jansa <Martin.Jansa@gmail.com>2014-08-13 23:28:04 +0200
commitf1e112fa688aa0900ebdbcc31d88c6ce91251495 (patch)
tree126e6ab82a079527e6992fb60d777ab758cbf7bb /meta-networking/recipes-support/dnsmasq/files
parenta46abacebdf83cd20f421828435e0403f5f3eb8d (diff)
downloadmeta-openembedded-f1e112fa688aa0900ebdbcc31d88c6ce91251495.tar.gz
dnsmasq: look for lua.pc, not lua5.1.pc
Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-networking/recipes-support/dnsmasq/files')
-rw-r--r--meta-networking/recipes-support/dnsmasq/files/parallel-make.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/meta-networking/recipes-support/dnsmasq/files/parallel-make.patch b/meta-networking/recipes-support/dnsmasq/files/parallel-make.patch
deleted file mode 100644
index 6d5b722eab..0000000000
--- a/meta-networking/recipes-support/dnsmasq/files/parallel-make.patch
+++ /dev/null
@@ -1,19 +0,0 @@
1The dnsmasq target depends on .configured and $(objs). .configured does an rm
2-f *.o. Yet the only thing telling make to build the .configured target before
3the $(objs) target was the order of the dependencies of the dnsmasq target. We
4can't rely on that order when doing a paralllel make build, so add an explicit
5rule to enforce that order.
6
7Signed-off-by: Christopher Larson <chris_larson@mentor.com>
8Upstream-status: Pending
9
10--- dnsmasq-2.68.orig/Makefile
11+++ dnsmasq-2.68/Makefile
12@@ -139,6 +139,8 @@ bloatcheck : $(BUILDDIR)/dnsmasq_baselin
13 @rm -f *.o
14 @touch $@
15
16+$(objs): .configured
17+
18 $(objs:.o=.c) $(hdrs):
19 ln -s $(top)/$(SRC)/$@ .