From 7d31e66602c8029727d9082b18a690dfd7d07602 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Wed, 3 Sep 2014 10:50:31 -0700 Subject: boot-format: obey CFLAGS, LDFLAGS Signed-off-by: Christopher Larson --- recipes-bsp/boot-format/boot-format/flags.patch | 21 +++++++++++++++++++++ recipes-bsp/boot-format/boot-format_git.bb | 5 +++-- 2 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 recipes-bsp/boot-format/boot-format/flags.patch (limited to 'recipes-bsp/boot-format') diff --git a/recipes-bsp/boot-format/boot-format/flags.patch b/recipes-bsp/boot-format/boot-format/flags.patch new file mode 100644 index 0000000..cddb34c --- /dev/null +++ b/recipes-bsp/boot-format/boot-format/flags.patch @@ -0,0 +1,21 @@ +Index: git/Makefile +=================================================================== +--- git.orig/Makefile ++++ git/Makefile +@@ -3,14 +3,14 @@ + INSTALL=install + PREFIX=/usr + +-CFLAGS=-Wall ++override CFLAGS+=-Wall + + all: boot_format + + boot_format.o: boot_format.c boot_format.h + + boot_format: boot_format.o +- $(CC) $< -o $@ ++ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS) + + install: boot_format + $(INSTALL) -d $(DESTDIR)$(PREFIX)/bin diff --git a/recipes-bsp/boot-format/boot-format_git.bb b/recipes-bsp/boot-format/boot-format_git.bb index eb7c6de..2d9f9b1 100644 --- a/recipes-bsp/boot-format/boot-format_git.bb +++ b/recipes-bsp/boot-format/boot-format_git.bb @@ -3,11 +3,12 @@ LICENSE = "GPLv2" PR = "r6" LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" -SRC_URI = "git://git.freescale.com/ppc/sdk/boot-format.git;nobranch=1" +SRC_URI = "git://git.freescale.com/ppc/sdk/boot-format.git;nobranch=1 \ + file://flags.patch" SRCREV = "4eb81a6797ef4e58bf7d9b2d58afb37a21c1f550" S = "${WORKDIR}/git" -EXTRA_OEMAKE = 'CC="${CC}"' +EXTRA_OEMAKE = 'CC="${CC}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"' do_install(){ oe_runmake DESTDIR=${D} PREFIX=${prefix} install -- cgit v1.2.3-54-g00ecf