summaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-05-14 23:40:19 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-05-14 23:40:19 +0000
commitfffdc1627a323f0a130fd3f639b24866f1f4dfa5 (patch)
tree3716a92e342d144d3dbb0401719eda3143c7fdea /Rules.mak
parent5992896c5871e809a519e924262bc643bbe9b9b8 (diff)
Add TOPDIR prefix in front of config file when getting target architecture.
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rules.mak b/Rules.mak
index ed57b7be0..8d47f4eb9 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -93,7 +93,7 @@ check_gcc=$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1;
then echo "$(1)"; else echo "$(2)"; fi)
# Make certain these contain a final "/", but no "//"s.
-TARGET_ARCH:=$(shell grep -s ^TARGET_ARCH .config | sed -e 's/^TARGET_ARCH=//' -e 's/"//g')
+TARGET_ARCH:=$(shell grep -s ^TARGET_ARCH $(TOPDIR)/.config | sed -e 's/^TARGET_ARCH=//' -e 's/"//g')
RUNTIME_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(subst ",, $(strip $(RUNTIME_PREFIX))))))
DEVEL_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(subst ",, $(strip $(DEVEL_PREFIX))))))
export RUNTIME_PREFIX DEVEL_PREFIX