Skip to content

Commit

Permalink
Merge pull request #108 from funman/odroidxu3-3.10.y
Browse files Browse the repository at this point in the history
backports: Fix out of tree build
  • Loading branch information
mdrjr committed Jun 3, 2015
2 parents 8e27b79 + a0eb449 commit b32a937
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arch/arm/configs/odroidxu3_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4243,7 +4243,7 @@ CONFIG_AVERAGE=y
CONFIG_OID_REGISTRY=m
# CONFIG_VIRTUALIZATION is not set
CONFIG_BACKPORT_INTEGRATE=y
CONFIG_BACKPORT_DIR="backports/"
CONFIG_BACKPORT_DIR="backports"
CONFIG_BACKPORT_VERSION="backports-20150222-0-g2745ccd"
CONFIG_BACKPORT_KERNEL_VERSION="next-20150222-0-g53e418f1"
CONFIG_BACKPORT_KERNEL_NAME="Linux"
Expand Down
2 changes: 1 addition & 1 deletion backports/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ config BACKPORT_INTEGRATE

config BACKPORT_DIR
string
default "backports/"
default "backports"

config BACKPORT_VERSION
string
Expand Down
7 changes: 6 additions & 1 deletion backports/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ NOSTDINC_FLAGS := \

export backport_srctree = $(M)
else
export BACKPORT_DIR = backports/
ifneq ($(KBUILD_SRC),)
ifneq ($(wildcard $(KBUILD_SRC)/$(src)),)
TOP_KBUILD_SRC := $(KBUILD_SRC)/
endif
endif
export BACKPORT_DIR = $(TOP_KBUILD_SRC)backports
export backport_srctree = $(BACKPORT_DIR)
NOSTDINC_FLAGS := \
-I$(BACKPORT_DIR)/backport-include/ \
Expand Down

0 comments on commit b32a937

Please sign in to comment.