summaryrefslogtreecommitdiffstats
path: root/meta-initramfs/recipes-bsp/kexecboot/files/0002-kexecboot-fix-configure-warnings.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-initramfs/recipes-bsp/kexecboot/files/0002-kexecboot-fix-configure-warnings.patch')
-rw-r--r--meta-initramfs/recipes-bsp/kexecboot/files/0002-kexecboot-fix-configure-warnings.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta-initramfs/recipes-bsp/kexecboot/files/0002-kexecboot-fix-configure-warnings.patch b/meta-initramfs/recipes-bsp/kexecboot/files/0002-kexecboot-fix-configure-warnings.patch
deleted file mode 100644
index ecf422b72..000000000
--- a/meta-initramfs/recipes-bsp/kexecboot/files/0002-kexecboot-fix-configure-warnings.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1From b8938acc3f1ab35273fa9a2fa7728050ef72ff65 Mon Sep 17 00:00:00 2001
2From: Andrea Adami <andrea.adami@gmail.com>
3Date: Fri, 2 May 2014 00:19:24 +0200
4Subject: [PATCH 2/4] kexecboot: fix configure warnings
5
6Makefile.am:5: warning: source file 'fstype/fstype.c' is in a subdirectory,
7Makefile.am:5: but option 'subdir-objects' is disabled
8automake: warning: possible forward-incompatibility.
9...
10Makefile.am:5: warning: source file 'machine/zaurus.c' is in a subdirectory,
11...
12
13Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
14---
15 configure.ac | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/configure.ac b/configure.ac
19index 0ca4b81..66ec54e 100644
20--- a/configure.ac
21+++ b/configure.ac
22@@ -1,7 +1,7 @@
23 AC_PREREQ(2.53)
24 AC_INIT([kexecboot], [0.6], [kexecboot-devel@linuxtogo.org])
25 AC_CANONICAL_HOST
26-AM_INIT_AUTOMAKE([-Wall foreign])
27+AM_INIT_AUTOMAKE([-Wall foreign] [subdir-objects])
28 AC_CONFIG_SRCDIR(kexecboot.c)
29 AC_CONFIG_HEADERS(config.h)
30 AM_MAINTAINER_MODE
31--
321.9.1
33