summaryrefslogtreecommitdiffstats
path: root/recipes-extended/glusterfs/files/glusterfs-configure-automake-with-subdir-objects-for.patch
diff options
context:
space:
mode:
authorYi Zhao <yi.zhao@windriver.com>2017-07-26 08:42:09 +0800
committerBruce Ashfield <bruce.ashfield@windriver.com>2017-07-26 10:07:52 -0400
commit5bda0e0c27cef4b2bf73a6be8771778ddeece215 (patch)
treec094588f7508db9324ea3e11c6dc8965762eebed /recipes-extended/glusterfs/files/glusterfs-configure-automake-with-subdir-objects-for.patch
parent4e05423f1542403651fe3e4623693aac857642bb (diff)
downloadmeta-cloud-services-5bda0e0c27cef4b2bf73a6be8771778ddeece215.tar.gz
glusterfs: uprev to 3.11.1
* Add systemd support * Drop the following patch which already fixed in upstream: 0001-Fix-for-mount.glusterfs-not-accepting-version-argume.patch Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-extended/glusterfs/files/glusterfs-configure-automake-with-subdir-objects-for.patch')
-rw-r--r--recipes-extended/glusterfs/files/glusterfs-configure-automake-with-subdir-objects-for.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/recipes-extended/glusterfs/files/glusterfs-configure-automake-with-subdir-objects-for.patch b/recipes-extended/glusterfs/files/glusterfs-configure-automake-with-subdir-objects-for.patch
new file mode 100644
index 0000000..f385578
--- /dev/null
+++ b/recipes-extended/glusterfs/files/glusterfs-configure-automake-with-subdir-objects-for.patch
@@ -0,0 +1,37 @@
1From 32dffb85c81480d53e639ef84242ccfca26461f9 Mon Sep 17 00:00:00 2001
2From: Xulin Sun <xulin.sun@windriver.com>
3Date: Mon, 21 Mar 2016 17:32:50 +0800
4Subject: [PATCH] glusterfs: configure: automake with subdir-objects & foreign
5 parameters
6
7With subdir-objects & foreign for AM_INIT_AUTOMAKE to avoid
8autoconf execution failed when using automake 1.14 around version.
9
10Upstream-Status: Pending
11
12Signed-off-by: Xulin Sun <xulin.sun@windriver.com>
13---
14 configure.ac | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17diff --git a/configure.ac b/configure.ac
18index ff746ff..983572e 100644
19--- a/configure.ac
20+++ b/configure.ac
21@@ -13,11 +13,11 @@ AC_INIT([glusterfs],
22 AC_SUBST([PACKAGE_RELEASE],
23 [m4_esyscmd([build-aux/pkg-version --release])])
24
25-AM_INIT_AUTOMAKE(tar-pax)
26+#AM_INIT_AUTOMAKE(tar-pax)
27
28 # Removes warnings when using automake 1.14 around (...but option 'subdir-objects' is disabled )
29 #but libglusterfs fails to build with contrib (Then are not set up that way?)
30-#AM_INIT_AUTOMAKE([subdir-objects])
31+AM_INIT_AUTOMAKE([subdir-objects foreign])
32
33 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)])
34
35--
361.9.1
37