[coreboot-gerrit] New patch to review for coreboot: coreinfo: Update Makefile

Martin Roth (martinroth@google.com) gerrit at coreboot.org
Sun Apr 24 01:33:46 CEST 2016


Martin Roth (martinroth at google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14485

-gerrit

commit bbd9b58e3e84d681e3869c04433f93fbbc3bd73a
Author: Martin Roth <martinroth at google.com>
Date:   Sat Apr 23 17:33:18 2016 -0600

    coreinfo: Update Makefile
    
    - Get the absolute pathname for LIBPAYLOAD_PATH
    - Update distclean:
    --correctly remove .config and .config.old - *.config doesn't match
    .config
    -- remove obsolete files from cleanup
    
    Change-Id: I6aa51b4ac2b392f786aeb12647be5073e6d02df5
    Signed-off-by: Martin Roth <martinroth at google.com>
---
 payloads/coreinfo/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/payloads/coreinfo/Makefile b/payloads/coreinfo/Makefile
index d953091..7c2e636 100644
--- a/payloads/coreinfo/Makefile
+++ b/payloads/coreinfo/Makefile
@@ -47,7 +47,7 @@ HOSTCXX ?= g++
 HOSTCFLAGS := -I$(srck) -I$(objk)
 HOSTCXXFLAGS := -I$(srck) -I$(objk)
 
-LIBPAYLOAD_PATH := ../libpayload
+LIBPAYLOAD_PATH := $(realpath ../libpayload)
 LIBPAYLOAD_OBJ := $(coreinfo_obj)/libpayload
 HAVE_LIBPAYLOAD := $(wildcard $(LIBPAYLOAD_OBJ)/lib/libpayload.a)
 LIBPAYLOAD_CONFIG ?= configs/defconfig-tinycurses
@@ -132,7 +132,7 @@ clean:
 
 distclean: clean
 	rm -rf build lpbuild
-	rm -f *.config *.config.old ..config.tmp .kconfig.d .tmpconfig*
+	rm -f .config* lp.config*
 
 include $(srck)/Makefile
 



More information about the coreboot-gerrit mailing list