diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-12-04 22:40:20 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-12-04 22:40:20 +0000 |
commit | 8fc69335e9c6b53805a7bf883de7ac57b2f564b4 (patch) | |
tree | 11f78959e454d5121e351c45381e19d90a2c9238 /test | |
parent | d8b1702462fdcf890c03046da97c56d8055a4295 (diff) | |
download | uClibc-alpine-8fc69335e9c6b53805a7bf883de7ac57b2f564b4.tar.bz2 uClibc-alpine-8fc69335e9c6b53805a7bf883de7ac57b2f564b4.tar.xz |
Change some variable names so we are more consistant with what
the linux kernel uses.
-Erik
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 2 | ||||
-rw-r--r-- | test/Rules.mak | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/Makefile b/test/Makefile index f07d87d74..39bd21d18 100644 --- a/test/Makefile +++ b/test/Makefile @@ -24,7 +24,7 @@ TOPDIR=../ ALL_SUBDIRS = args assert ctype ldso pwd_grp signal silly stdlib string unistd crypt #misc DIRS = $(ALL_SUBDIRS) -#ifeq ($(TARGET_ARCH), $(NATIVE_ARCH)) +#ifeq ($(TARGET_ARCH), $(HOST_ARCH)) # DIRS = $(ALL_SUBDIRS) #else # DIRS = diff --git a/test/Rules.mak b/test/Rules.mak index c90f9744e..6090fd700 100644 --- a/test/Rules.mak +++ b/test/Rules.mak @@ -10,9 +10,9 @@ include $(TESTDIR)Config -# Use NATIVE_ARCH here since running these test is not +# Use HOST_ARCH here since running these test is not # even possible when cross compiling... -NATIVE_ARCH:= $(shell uname -m | sed \ +HOST_ARCH:= $(shell uname -m | sed \ -e 's/i.86/i386/' \ -e 's/sparc.*/sparc/' \ -e 's/arm.*/arm/g' \ |