diff options
Diffstat (limited to 'meta/recipes-devtools/e2fsprogs/e2fsprogs-1.41.14/quotefix.patch')
-rw-r--r-- | meta/recipes-devtools/e2fsprogs/e2fsprogs-1.41.14/quotefix.patch | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.41.14/quotefix.patch b/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.41.14/quotefix.patch deleted file mode 100644 index f260f034fa..0000000000 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.41.14/quotefix.patch +++ /dev/null | |||
@@ -1,47 +0,0 @@ | |||
1 | Upstream-Status: Inappropriate [configuration] | ||
2 | Signed-off-by: Mei Lei <lei.mei@intel.com> | ||
3 | |||
4 | |||
5 | These macros are underquoted and break with recent autoconf+automake | ||
6 | combinations. | ||
7 | |||
8 | RP 1/2/10 | ||
9 | |||
10 | Index: e2fsprogs-1.41.5/configure.in | ||
11 | =================================================================== | ||
12 | --- e2fsprogs-1.41.5.orig/configure.in 2010-02-01 11:40:10.547790252 +0000 | ||
13 | +++ e2fsprogs-1.41.5/configure.in 2010-02-01 11:44:51.577876485 +0000 | ||
14 | @@ -397,11 +397,11 @@ | ||
15 | AC_MSG_ERROR([pkg-config not installed; please install it.]) | ||
16 | fi | ||
17 | |||
18 | - AC_CHECK_LIB(blkid, blkid_get_cache, | ||
19 | + [AC_CHECK_LIB(blkid, blkid_get_cache, | ||
20 | [LIBBLKID=`$PKG_CONFIG --libs blkid`; | ||
21 | STATIC_LIBBLKID=`$PKG_CONFIG --static --libs blkid`], | ||
22 | [AC_MSG_ERROR([external blkid library not found])], | ||
23 | - [$LIBBLKID]) | ||
24 | + [$LIBBLKID])] | ||
25 | BLKID_CMT=# | ||
26 | AC_MSG_RESULT([Disabling private blkid library]) | ||
27 | else | ||
28 | @@ -786,15 +786,15 @@ | ||
29 | dnl | ||
30 | SEM_INIT_LIB='' | ||
31 | AC_CHECK_FUNC(sem_init, , | ||
32 | - AC_CHECK_LIB(pthread, sem_init, | ||
33 | + [AC_CHECK_LIB(pthread, sem_init, | ||
34 | AC_DEFINE(HAVE_SEM_INIT) | ||
35 | SEM_INIT_LIB=-lpthread, | ||
36 | - AC_CHECK_LIB(rt, sem_init, | ||
37 | + [AC_CHECK_LIB(rt, sem_init, | ||
38 | AC_DEFINE(HAVE_SEM_INIT) | ||
39 | SEM_INIT_LIB=-lrt, | ||
40 | - AC_CHECK_LIB(posix4, sem_init, | ||
41 | + [AC_CHECK_LIB(posix4, sem_init, | ||
42 | AC_DEFINE(HAVE_SEM_INIT) | ||
43 | - SEM_INIT_LIB=-lposix4))))dnl | ||
44 | + SEM_INIT_LIB=-lposix4)])])])dnl | ||
45 | AC_SUBST(SEM_INIT_LIB) | ||
46 | dnl | ||
47 | dnl Check for unified diff | ||