summaryrefslogtreecommitdiff
path: root/ldso
diff options
context:
space:
mode:
authorDavid McCullough <davidm@snapgear.com>2001-06-07 11:52:59 +0000
committerDavid McCullough <davidm@snapgear.com>2001-06-07 11:52:59 +0000
commit50bb6aff9a1f747bfe5b0d14ad9c25296f6892e4 (patch)
tree2b5650eef672ba9c7d7baa7a472fd34790e145c1 /ldso
parentd0c25d2349225c6c1f10cb30df9ff85156856404 (diff)
ldso build always used $(NATIVE_ARCH)-uClibc-gcc, which doesn't work for
cross build (ie., m68k under i386). Changed it to use $(TARGET_ARCH) instead.
Diffstat (limited to 'ldso')
-rw-r--r--ldso/Rules.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/Rules.mak b/ldso/Rules.mak
index f2eccd4a8..7f63b4d8a 100644
--- a/ldso/Rules.mak
+++ b/ldso/Rules.mak
@@ -5,6 +5,6 @@ LDSO_VERSION=1.9.11
# Do NOT use -fomit-frame-pointer -- It won't work!
CFLAGS += -DVERSION=\"$(LDSO_VERSION)\"
-CC = $(TOPDIR)extra/gcc-uClibc/$(NATIVE_ARCH)-uclibc-gcc
+CC = $(TOPDIR)extra/gcc-uClibc/$(TARGET_ARCH)-uclibc-gcc
CFLAGS += -DUCLIBC_ROOT_DIR=\"$(ROOT_DIR)\"