diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | iconvdata/Makefile | 8 |
2 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index 5f9b002325..c3eeeee072 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-07-24 Ulrich Drepper <drepper@redhat.com> + + * iconvdata/Makefile: Add dependencies for tst-loading test. + 2001-07-24 Andreas Jaeger <aj@suse.de> * iconv/iconvconfig.c (name_insert): Make static to avoid warning. @@ -37,9 +41,9 @@ 2001-07-23 Jakub Jelinek <jakub@redhat.com> - * sunrpc/svc_tcp.c (svctcp_rendezvous_abort): New. + * sunrpc/svc_tcp.c (svctcp_rendezvous_abort): New function. (svctcp_rendezvous_op): Use it. - * sunrpc/svc_unix.c (svcunix_rendezvous_abort): New. + * sunrpc/svc_unix.c (svcunix_rendezvous_abort): New function. (svcunix_rendezvous_op): Use it. 2001-07-23 Andreas Schwab <schwab@suse.de> diff --git a/iconvdata/Makefile b/iconvdata/Makefile index dffb468dad..4b37c74674 100644 --- a/iconvdata/Makefile +++ b/iconvdata/Makefile @@ -271,8 +271,12 @@ tst-loading-ENV = MALLOC_TRACE=$(objpfx)tst-loading.mtrace $(objpfx)mtrace-tst-loading: $(objpfx)tst-loading.out $(common-objpfx)malloc/mtrace $(objpfx)tst-loading.mtrace > $@ -$(objpfx)bug-iconv1.out: $(objpfx)gconv-modules -$(objpfx)bug-iconv2.out: $(objpfx)gconv-modules +$(objpfx)bug-iconv1.out: $(objpfx)gconv-modules \ + $(addprefix $(objpfx),$(modules.so)) +$(objpfx)bug-iconv2.out: $(objpfx)gconv-modules \ + $(addprefix $(objpfx),$(modules.so)) +$(objpfx)tst-loading.out: $(objpfx)gconv-modules \ + $(addprefix $(objpfx),$(modules.so)) $(objpfx)iconv-test.out: run-iconv-test.sh $(objpfx)gconv-modules \ $(addprefix $(objpfx),$(modules.so)) \ |