summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/quotefix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/quotefix.patch')
-rw-r--r--meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/quotefix.patch44
1 files changed, 44 insertions, 0 deletions
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/quotefix.patch b/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/quotefix.patch
new file mode 100644
index 0000000000..e576f35ccc
--- /dev/null
+++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/quotefix.patch
@@ -0,0 +1,44 @@
1Upstream-Status: Pending
2
3These macros are underquoted and break with recent autoconf+automake
4combinations. - RP 2010-01-02
5
6Signed-off-by: Scott Garman <scott.a.garman@intel.com>
7
8diff -urN e2fsprogs-1.42.orig//configure.in e2fsprogs-1.42/configure.in
9--- e2fsprogs-1.42.orig//configure.in 2011-11-28 09:28:22.000000000 -0800
10+++ e2fsprogs-1.42/configure.in 2012-01-12 14:42:54.820531407 -0800
11@@ -439,11 +439,11 @@
12 AC_MSG_ERROR([pkg-config not installed; please install it.])
13 fi
14
15- AC_CHECK_LIB(uuid, uuid_generate,
16+ [AC_CHECK_LIB(uuid, uuid_generate,
17 [LIBUUID=`$PKG_CONFIG --libs uuid`;
18 STATIC_LIBUUID=`$PKG_CONFIG --static --libs uuid`],
19 [AC_MSG_ERROR([external uuid library not found])],
20- [$LIBUUID])
21+ [$LIBUUID])]
22 UUID_CMT=#
23 AC_MSG_RESULT([Disabling private uuid library])
24 else
25@@ -939,15 +939,15 @@
26 AH_TEMPLATE([HAVE_SEM_INIT], [Define to 1 if sem_init() exists])
27 SEM_INIT_LIB=''
28 AC_CHECK_FUNC(sem_init, ,
29- AC_CHECK_LIB(pthread, sem_init,
30+ [AC_CHECK_LIB(pthread, sem_init,
31 AC_DEFINE(HAVE_SEM_INIT, 1)
32 SEM_INIT_LIB=-lpthread,
33- AC_CHECK_LIB(rt, sem_init,
34+ [AC_CHECK_LIB(rt, sem_init,
35 AC_DEFINE(HAVE_SEM_INIT, 1)
36 SEM_INIT_LIB=-lrt,
37- AC_CHECK_LIB(posix4, sem_init,
38+ [AC_CHECK_LIB(posix4, sem_init,
39 AC_DEFINE(HAVE_SEM_INIT, 1)
40- SEM_INIT_LIB=-lposix4))))dnl
41+ SEM_INIT_LIB=-lposix4)])])])dnl
42 AC_SUBST(SEM_INIT_LIB)
43 dnl
44 dnl Check for unified diff