[coreboot-gerrit] New patch to review for coreboot: e5ae1a9 build: allow obj=/absolute/path

Patrick Georgi (patrick@georgi-clan.de) gerrit at coreboot.org
Wed May 21 23:03:06 CEST 2014


Patrick Georgi (patrick at georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5803

-gerrit

commit e5ae1a93969fa5eda73c68bbaf3fbddcbd41cfc4
Author: Patrick Georgi <patrick at georgi-clan.de>
Date:   Wed May 21 22:36:13 2014 +0200

    build: allow obj=/absolute/path
    
    This allows moving the build tree outside the source tree.
    
    Change-Id: I97882c4820d2c962c27bf8d50378e64016ce5790
    Signed-off-by: Patrick Georgi <patrick at georgi-clan.de>
---
 Makefile.inc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile.inc b/Makefile.inc
index 529250d..2b62e78 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -88,7 +88,7 @@ $(spc) +=
 files-in-dir-recursive=$(filter $(1)%,$(2))
 
 # parent-dir,dir/
-parent-dir=$(dir $(subst $( ),/,$(strip $(subst /, ,$(1)))))
+parent-dir=$(dir $(if $(patsubst /%,,$(1)),,/)$(subst $( ),/,$(strip $(subst /, ,$(1)))))
 
 # filters out exactly the directory specified
 # filter-out-dir,dir_to_keep,dirs
@@ -96,13 +96,13 @@ filter-out-dir=$(filter-out $(1),$(2))
 
 # filters out dir_to_keep and all its parents
 # filter-out-dirs,dir_to_keep,dirs
-filter-out-dirs=$(if $(filter-out ./,$(1)),$(call filter-out-dirs,$(call parent-dir,$(1)),$(call filter-out-dir,$(1),$(2))),$(call filter-out-dir,$(1),$(2)))
+filter-out-dirs=$(if $(filter-out ./ /,$(1)),$(call filter-out-dirs,$(call parent-dir,$(1)),$(call filter-out-dir,$(1),$(2))),$(call filter-out-dir,$(1),$(2)))
 
 # dir-wildcards,dirs
 dir-wildcards=$(addsuffix %,$(1))
 
 # files-in-dir,dir,files
-files-in-dir=$(filter-out $(call dir-wildcards,$(call filter-out-dirs,$(1),$(dir $(2)))),$(call files-in-dir-recursive,$(1),$(2)))
+files-in-dir=$(filter-out $(call dir-wildcards,$(call filter-out-dirs,$(1),$(sort $(dir $(2))))),$(call files-in-dir-recursive,$(1),$(2)))
 
 #######################################################################
 # reduce command line length by linking the objects of each



More information about the coreboot-gerrit mailing list