aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-07-16 04:43:49 +0000
committerUlrich Drepper <drepper@redhat.com>2000-07-16 04:43:49 +0000
commite0ea35a3f764a11cf9fc8389f128e5acad09cb17 (patch)
tree23f0457334b63b15b68237ec0c3757f70e7704f1
parent9ff9add9a5812f6677d22c7d6bb17471cfc9025b (diff)
downloadglibc-e0ea35a3f764a11cf9fc8389f128e5acad09cb17.tar
glibc-e0ea35a3f764a11cf9fc8389f128e5acad09cb17.tar.gz
glibc-e0ea35a3f764a11cf9fc8389f128e5acad09cb17.tar.bz2
glibc-e0ea35a3f764a11cf9fc8389f128e5acad09cb17.zip
Update.
* io/Makefile: Rewrite rules to avoid running ftwtest unless necessary.
-rw-r--r--ChangeLog2
-rw-r--r--io/Makefile6
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 8c3cb6c047..835d1d9ae7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,8 @@
* io/Makefile (tests): Add tst-getcwd.
* io/tst-getcwd.c: New file.
+ * io/Makefile: Rewrite rules to avoid running ftwtest unless necessary.
+
2000-07-15 Jakub Jelinek <jakub@redhat.com>
* gconv_open (__gconv_open): Initialize whole __gconv_trans_data
diff --git a/io/Makefile b/io/Makefile
index 0c2cf9b3cd..c7f02d618e 100644
--- a/io/Makefile
+++ b/io/Makefile
@@ -66,6 +66,8 @@ CFLAGS-test-stat.c = -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
CFLAGS-test-lfs.c = -D_LARGEFILE64_SOURCE
ifeq ($(cross-compiling),no)
-tests: $(objpfx)ftwtest
- $(SHELL) -e ftwtest-sh $(common-objpfx) $(<D)/$(<F)
+tests: $(objpfx)ftwtest.out
+
+$(objpfx)ftwtest.out: $(objpfx)ftwtest
+ $(SHELL) -e ftwtest-sh $(common-objpfx) $(<D)/$(<F) > $@
endif