From: Ulrich Drepper Date: Fri, 29 May 1998 10:25:23 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_0_95~158 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e7a95dc622058b3e8cb90263c51e96ae04abfe71;p=platform%2Fupstream%2Fglibc.git Update. 1998-05-29 Ulrich Drepper * 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 . --- diff --git a/ChangeLog b/ChangeLog index 66dc924..fbc1fbb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +1998-05-29 Ulrich Drepper + + * 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 . + 1998-05-28 00:53 Zack Weinberg * glibcbug.in: Send to bugs@gnu or libc-alpha@cygnus depending diff --git a/io/Makefile b/io/Makefile index e15676f..f8597f5 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 e766429..eda9242 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