diff options
author | Roy.Li <rongqing.li@windriver.com> | 2013-06-18 14:32:22 +0800 |
---|---|---|
committer | Joe MacDonald <joe.macdonald@windriver.com> | 2013-06-18 10:08:23 -0400 |
commit | bb84e59036b350e29fe96e9aaa0614147d268fb9 (patch) | |
tree | bdcacec159f4928b21e845ae762c31237a155503 /meta-networking | |
parent | a4c953b35d082c9ef45c6e41212bf9c8f7b0ff74 (diff) | |
download | meta-openembedded-bb84e59036b350e29fe96e9aaa0614147d268fb9.tar.gz |
autofs: two fixes
autofs's lib sources have a dependency on a number of files that are
generated by rpcgen during buildtime.
fix a typo in configure.in
Signed-off-by: Roy.Li <rongqing.li@windriver.com>
Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
Diffstat (limited to 'meta-networking')
-rw-r--r-- | meta-networking/recipes-daemons/autofs/autofs-5.0.7/autofs-5.0.7-fix-lib-deps.patch | 28 | ||||
-rw-r--r-- | meta-networking/recipes-daemons/autofs/autofs_5.0.7.bb | 2 |
2 files changed, 30 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/autofs/autofs-5.0.7/autofs-5.0.7-fix-lib-deps.patch b/meta-networking/recipes-daemons/autofs/autofs-5.0.7/autofs-5.0.7-fix-lib-deps.patch new file mode 100644 index 000000000..09fea495d --- /dev/null +++ b/meta-networking/recipes-daemons/autofs/autofs-5.0.7/autofs-5.0.7-fix-lib-deps.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | From 54a9bd28a307dd74df044d779ca85adcf36aa202 Mon Sep 17 00:00:00 2001 | ||
2 | From: Joe MacDonald <joe.macdonald@windriver.com> | ||
3 | Date: Tue, 18 Jun 2013 10:05:21 -0400 | ||
4 | Subject: [PATCH] Fix the dependency issue | ||
5 | |||
6 | Upstream-Status: Pending | ||
7 | |||
8 | autofs's lib sources have a dependency on a number of files that are | ||
9 | generated by rpcgen during buildtime | ||
10 | |||
11 | Signed-off-by: Roy.Li <rongqing.li@windriver.com> | ||
12 | Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com> | ||
13 | --- | ||
14 | lib/Makefile | 1 + | ||
15 | 1 file changed, 1 insertion(+) | ||
16 | |||
17 | diff --git a/lib/Makefile b/lib/Makefile | ||
18 | index 5418009..bff4e1d 100644 | ||
19 | --- a/lib/Makefile | ||
20 | +++ b/lib/Makefile | ||
21 | @@ -75,3 +75,4 @@ install: all | ||
22 | clean: | ||
23 | rm -f $(LIB) $(RPCS) $(OBJS) $(YACCSRC) *.output *~ | ||
24 | |||
25 | +$(OBJS): $(RPCS) | ||
26 | -- | ||
27 | 1.7.10.4 | ||
28 | |||
diff --git a/meta-networking/recipes-daemons/autofs/autofs_5.0.7.bb b/meta-networking/recipes-daemons/autofs/autofs_5.0.7.bb index 74a4e68e2..0c66ebc3d 100644 --- a/meta-networking/recipes-daemons/autofs/autofs_5.0.7.bb +++ b/meta-networking/recipes-daemons/autofs/autofs_5.0.7.bb | |||
@@ -59,6 +59,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/daemons/autofs/v5/autofs-${PV}.tar.bz2 \ | |||
59 | file://libtirpc-name-clash-backout.patch \ | 59 | file://libtirpc-name-clash-backout.patch \ |
60 | file://autofs-5.0.7-do-not-check-for-modprobe.patch \ | 60 | file://autofs-5.0.7-do-not-check-for-modprobe.patch \ |
61 | file://fix_disable_ldap.patch \ | 61 | file://fix_disable_ldap.patch \ |
62 | file://autofs-5.0.7-fix-lib-deps.patch \ | ||
62 | " | 63 | " |
63 | 64 | ||
64 | SRC_URI[md5sum] = "bc46838dece83c02d800ff144ed9f431" | 65 | SRC_URI[md5sum] = "bc46838dece83c02d800ff144ed9f431" |
@@ -87,6 +88,7 @@ CACHED_CONFIGUREVARS = "ac_cv_path_RANLIB=${RANLIB} \ | |||
87 | " | 88 | " |
88 | 89 | ||
89 | do_configure_prepend () { | 90 | do_configure_prepend () { |
91 | sed -e "s:filagdir:flagdir:" -i configure.in | ||
90 | if [ ! -e acinclude.m4 ]; then | 92 | if [ ! -e acinclude.m4 ]; then |
91 | cp aclocal.m4 acinclude.m4 | 93 | cp aclocal.m4 acinclude.m4 |
92 | fi | 94 | fi |