diff options
author | Jakub Jelinek <jakub@redhat.com> | 2005-01-06 14:57:16 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2005-01-06 14:57:16 +0000 |
commit | 0ecfa2580d1aedb744deb5af1b60f92c69b9e9e0 (patch) | |
tree | 1ef0d0dc09dba23037800d5f3794a77d9b45554f /iconv | |
parent | e4f5d077e9190f57abd49684bd7afcf4325bd348 (diff) | |
download | glibc-0ecfa2580d1aedb744deb5af1b60f92c69b9e9e0.tar glibc-0ecfa2580d1aedb744deb5af1b60f92c69b9e9e0.tar.gz glibc-0ecfa2580d1aedb744deb5af1b60f92c69b9e9e0.tar.bz2 glibc-0ecfa2580d1aedb744deb5af1b60f92c69b9e9e0.zip |
Updated to fedora-glibc-20050106T1443
Diffstat (limited to 'iconv')
-rw-r--r-- | iconv/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/iconv/Makefile b/iconv/Makefile index fe0c453e7b..40c7cbcdd3 100644 --- a/iconv/Makefile +++ b/iconv/Makefile @@ -78,3 +78,15 @@ $(inst_bindir)/iconv: $(objpfx)iconv_prog $(+force) $(objpfx)iconv_prog: $(iconv_prog-modules:%=$(objpfx)%.o) $(objpfx)iconvconfig: $(iconvconfig-modules:%=$(objpfx)%.o) + +ifneq ($(cross-compiling),yes) +xtests: test-iconvconfig +endif + +.PHONY: test-iconvconfig +test-iconvconfig: /dev/null $(objpfx)iconvconfig + tmp=$(objpfx)gconv-modules.cache.$$$$; \ + rm -f $$tmp; \ + $(make-test-out) --output=$$tmp --nostdlib $(inst_gconvdir) && \ + cmp $$tmp $(inst_gconvdir)/gconv-modules.cache && \ + rm -f $$tmp |