diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-09-23 14:26:51 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-09-23 14:26:51 +0000 |
commit | af56420374f0d2ff05f943146674d1538744b53f (patch) | |
tree | b95b24e5c2dbdeca3202c52eb86c0a39c68e2ea3 /localedata/Makefile | |
parent | 24fd4cc4512102239f408ad965c7d65229be90d3 (diff) | |
download | glibc-af56420374f0d2ff05f943146674d1538744b53f.tar.gz glibc-af56420374f0d2ff05f943146674d1538744b53f.tar.xz glibc-af56420374f0d2ff05f943146674d1538744b53f.zip |
Update.
* db/makedb.c: Removed. * Makefile: Add localedata/% goal.
Diffstat (limited to 'localedata/Makefile')
-rw-r--r-- | localedata/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/localedata/Makefile b/localedata/Makefile index 231f3ac5dc..4108b7ed47 100644 --- a/localedata/Makefile +++ b/localedata/Makefile @@ -80,13 +80,11 @@ do-tst-rpmatch: tst-rpmatch.sh $(objpfx)tst-rpmatch do-tst-fmon endif # Sometimes the whole collection of locale files should be installed. -ifneq ($(install_root),) -LOCALEDEF=chroot $(install_root) $(bindir)/localedef -else LOCALEDEF=$(common-objpfx)elf/ld.so --library-path $(rpath-link) $(common-objpfx)locale/localedef -endif install-locales: while read locale charset; do \ case $$locale in \#*) continue;; esac; \ - $(LOCALEDEF) -c -i $$locale -f $$charset $$locale; \ + $(LOCALEDEF) -c -i locales/$$locale -f charmaps/$$charset \ + -u repertoiremaps/mnemonic.ds \ + $(inst_localedir)/$$locale; \ done < SUPPORTED |