diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-05-29 10:25:23 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-05-29 10:25:23 +0000 |
commit | e7a95dc622058b3e8cb90263c51e96ae04abfe71 (patch) | |
tree | fe5fffc1e388d10d205f4995d857dcb4b31e3c87 | |
parent | 66715f834cb1f2f5c3742e94f73bd630ea4b14eb (diff) | |
download | glibc-e7a95dc622058b3e8cb90263c51e96ae04abfe71.tar glibc-e7a95dc622058b3e8cb90263c51e96ae04abfe71.tar.gz glibc-e7a95dc622058b3e8cb90263c51e96ae04abfe71.tar.bz2 glibc-e7a95dc622058b3e8cb90263c51e96ae04abfe71.zip |
Update.
1998-05-29 Ulrich Drepper <drepper@cygnus.com>
* io/Makefile: Don't run ftwtest-sh if cross-compiling.
* string/Makefile: Don't run test on tst/svc.out if
cross-compiling.
Reported by Deborah Wallach <kerr@pa.dec.com>.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | io/Makefile | 2 | ||||
-rw-r--r-- | string/Makefile | 2 |
3 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,10 @@ +1998-05-29 Ulrich Drepper <drepper@cygnus.com> + + * io/Makefile: Don't run ftwtest-sh if cross-compiling. + * string/Makefile: Don't run test on tst/svc.out if + cross-compiling. + Reported by Deborah Wallach <kerr@pa.dec.com>. + 1998-05-28 00:53 Zack Weinberg <zack@rabi.phys.columbia.edu> * glibcbug.in: Send to bugs@gnu or libc-alpha@cygnus depending diff --git a/io/Makefile b/io/Makefile index e15676f39d..f8597f5972 100644 --- a/io/Makefile +++ b/io/Makefile @@ -62,5 +62,7 @@ include ../Rules CFLAGS-fts.c = -Wno-uninitialized CFLAGS-ftw.c = -Wno-uninitialized +ifeq ($(cross-compiling),no) tests: $(objpfx)ftwtest $(SHELL) -e ftwtest-sh $(common-objpfx) $< +endif diff --git a/string/Makefile b/string/Makefile index e766429c52..eda9242ab7 100644 --- a/string/Makefile +++ b/string/Makefile @@ -55,5 +55,7 @@ CFLAGS-noinl-tester.c = -fno-builtin CFLAGS-tst-strlen.c = -fno-builtin CFLAGS-stratcliff.c = -fno-builtin +ifeq ($(cross-compiling),no) tests: $(objpfx)tst-svc.out cmp tst-svc.expect $(objpfx)tst-svc.out +endif |