diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-07-03 23:41:50 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-07-03 23:41:50 +0000 |
commit | 68eefde7b626b57d5fde40980084feda77c89801 (patch) | |
tree | 343a783a04e2ecfa9b42abfed3db5dd9c963b423 | |
parent | 6f98fd7ebb025b6aa3731139c1897bd46a6278fb (diff) | |
download | glibc-68eefde7b626b57d5fde40980084feda77c89801.tar glibc-68eefde7b626b57d5fde40980084feda77c89801.tar.gz glibc-68eefde7b626b57d5fde40980084feda77c89801.tar.bz2 glibc-68eefde7b626b57d5fde40980084feda77c89801.zip |
Update.
2000-07-03 Andreas Jaeger <aj@suse.de>
* dlfcn/Makefile (generated): New.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | dlfcn/Makefile | 1 | ||||
-rwxr-xr-x | stdio-common/tst-unbputc.sh | 2 |
3 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2000-07-03 Andreas Jaeger <aj@suse.de> + + * dlfcn/Makefile (generated): New. + 2000-07-03 Ulrich Drepper <drepper@redhat.com> * libio/genops.c (__overflow): Use _IO_fwide to orient the stream. diff --git a/dlfcn/Makefile b/dlfcn/Makefile index 1f171040d2..398972015a 100644 --- a/dlfcn/Makefile +++ b/dlfcn/Makefile @@ -37,6 +37,7 @@ tests = glrefmain failtest endif modules-names = glreflib1 glreflib2 failtestmod extra-objs += $(modules-names:=.os) eval.os +generated := $(modules-names:=.so) include ../Rules diff --git a/stdio-common/tst-unbputc.sh b/stdio-common/tst-unbputc.sh index 929afd357c..efc07778e3 100755 --- a/stdio-common/tst-unbputc.sh +++ b/stdio-common/tst-unbputc.sh @@ -26,6 +26,6 @@ ${common_objpfx}elf/ld.so --library-path $common_objpfx \ ${common_objpfx}stdio-common/tst-unbputc \ 2> ${common_objpfx}stdio-common/tst-unbputc.out || status=1 -(echo 12 | cmp ${common_objpfx}stdio-common/tst-unbputc.out -) || status=1 +(echo -n 12 | cmp ${common_objpfx}stdio-common/tst-unbputc.out -) || status=1 exit $status |