summaryrefslogtreecommitdiff
path: root/ldso
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-12-04 22:40:20 +0000
committerEric Andersen <andersen@codepoet.org>2002-12-04 22:40:20 +0000
commit8fc69335e9c6b53805a7bf883de7ac57b2f564b4 (patch)
tree11f78959e454d5121e351c45381e19d90a2c9238 /ldso
parentd8b1702462fdcf890c03046da97c56d8055a4295 (diff)
Change some variable names so we are more consistant with what
the linux kernel uses. -Erik
Diffstat (limited to 'ldso')
-rw-r--r--ldso/util/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/ldso/util/Makefile b/ldso/util/Makefile
index 35c2dceab..0f36bd31e 100644
--- a/ldso/util/Makefile
+++ b/ldso/util/Makefile
@@ -37,7 +37,7 @@ elf_header:
ln -fs $(TOPDIR)include/elf.h
readelf: readelf.c
- $(NATIVE_CC) $(NATIVE_CFLAGS) -I . readelf.c -o $@
+ $(HOSTCC) $(HOSTCFLAGS) -I . readelf.c -o $@
strip -x -R .note -R .comment $@
readelf.target: readelf.c
@@ -45,20 +45,20 @@ readelf.target: readelf.c
$(STRIPTOOL) -x -R .note -R .comment $@
readsoname.o: readsoname.c readsoname2.c
- $(NATIVE_CC) $(NATIVE_CFLAGS) -I . -c $< -o $@
+ $(HOSTCC) $(HOSTCFLAGS) -I . -c $< -o $@
strip -x -R .note -R .comment $*.o
ldconfig.o: ldconfig.c
- $(NATIVE_CC) $(NATIVE_CFLAGS) -I . \
+ $(HOSTCC) $(HOSTCFLAGS) -I . \
-DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" -c $< -o $@
strip -x -R .note -R .comment $*.o
ldconfig: ldconfig.o readsoname.o
- $(NATIVE_CC) $(NATIVE_CFLAGS) $^ -o $@
+ $(HOSTCC) $(HOSTCFLAGS) $^ -o $@
strip -x -R .note -R .comment $@
ldd: ldd.c
- $(NATIVE_CC) $(NATIVE_CFLAGS) -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" \
+ $(HOSTCC) $(HOSTCFLAGS) -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" \
-DUCLIBC_DEVEL_PREFIX=\"$(DEVEL_PREFIX)\" \
-DUCLIBC_BUILD_DIR=\"$(shell cd $(TOPDIR) && pwd)\" \
-DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" -I . \