diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-05-11 23:28:52 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-05-11 23:28:52 +0000 |
commit | edf205d5ef1528247fde0637572a4631e0f1a5c2 (patch) | |
tree | 9368f153f59da072509167b1ca5adbe07c114b61 /io/Makefile | |
parent | ef3a0fcdad439948e501e951e8b1055e4971d008 (diff) | |
download | glibc-edf205d5ef1528247fde0637572a4631e0f1a5c2.tar.gz glibc-edf205d5ef1528247fde0637572a4631e0f1a5c2.tar.xz glibc-edf205d5ef1528247fde0637572a4631e0f1a5c2.zip |
Update.
* io/Makefile ($(objpfx)ftwtest.out): Use absolute file names. 2003-05-11 Ulrich Drepper <drepper@redhat.com> * time/tst-strftime.c (do_test): Add tests for - flag. 2003-05-11 Jim Meyering <jim@meyering.net> * time/strftime.c (my_strftime): Let the `-' (no-pad) flag affect the space-padded-by-default conversion specifiers, %e, %k, %l. 2003-05-11 Andreas Schwab <schwab@suse.de>
Diffstat (limited to 'io/Makefile')
-rw-r--r-- | io/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/io/Makefile b/io/Makefile index 97bff3606c..0a222a234e 100644 --- a/io/Makefile +++ b/io/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1992-1999,2000,01,02 Free Software Foundation, Inc. +# Copyright (C) 1992-2002, 2003 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -83,5 +83,6 @@ ifeq ($(cross-compiling),no) tests: $(objpfx)ftwtest.out $(objpfx)ftwtest.out: $(objpfx)ftwtest - $(SHELL) -e ftwtest-sh $(common-objpfx) $(<D)/$(<F) > $@ + $(SHELL) -e ftwtest-sh $(shell cd $(common-objpfx). && pwd)/ \ + $(shell cd $(<D) && pwd)/$(<F) > $@ endif |