diff options
author | Andreas Schwab <schwab@suse.de> | 1999-03-20 17:16:44 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1999-03-20 17:16:44 +0000 |
commit | df455ccb63266939408fba27120a7bbdee3457e9 (patch) | |
tree | 90c9d9443ad66898f2e6a7cb34cd36984ff2530f /localedata/Makefile | |
parent | bfe1b528468c65f1ad575bfb2a0aea48dd9ded0b (diff) | |
download | glibc-df455ccb63266939408fba27120a7bbdee3457e9.tar glibc-df455ccb63266939408fba27120a7bbdee3457e9.tar.gz glibc-df455ccb63266939408fba27120a7bbdee3457e9.tar.bz2 glibc-df455ccb63266939408fba27120a7bbdee3457e9.zip |
1999-03-19 Andreas Jaeger <aj@arthur.rhein-neckar.de> cvs/libc-as-990322
* rt/Makefile: Link against static library if no shared lib is
available.
* localedata/Makefile: The shells scripts implementing the test
require the dynamic linker which is not available with
--disable-shared. Skip the test if --disable-shared is given.
* linuxthreads/Makefile: Link test against static libpthread if no
shared lib is available.
* iconvdata/Makefile (tests): Run iconv-test only if we're
building shared libraries.
* elf/Makefile (tests): Likewise for elf tests.
* posix/Makefile: The test frameworks globtest and wordexp-test
require the dynamic linker which is not available with
--disable-shared. Skip the test if --disable-shared is given.
* grp/Makefile (otherlibs): For static nss build link against
necessary libs.
* rt/Makefile: Link against static library if no shared lib is
available.
* localedata/Makefile: The shells scripts implementing the test
require the dynamic linker which is not available with
--disable-shared. Skip the test if --disable-shared is given.
* linuxthreads/Makefile: Link test against static libpthread if no
shared lib is available.
* iconvdata/Makefile (tests): Run iconv-test only if we're
building shared libraries.
* elf/Makefile (tests): Likewise for elf tests.
* posix/Makefile: The test frameworks globtest and wordexp-test
require the dynamic linker which is not available with
--disable-shared. Skip the test if --disable-shared is given.
* grp/Makefile (otherlibs): For static nss build link against
necessary libs.
1999-03-19 Andreas Jaeger <aj@arthur.rhein-neckar.de>
Diffstat (limited to 'localedata/Makefile')
-rw-r--r-- | localedata/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/localedata/Makefile b/localedata/Makefile index 7ee2ace0e7..6784982ecf 100644 --- a/localedata/Makefile +++ b/localedata/Makefile @@ -69,6 +69,7 @@ $(inst_i18ndir)/repertoiremaps/%: repertoiremaps/% $(+force); $(do-install) ifeq (no,$(cross-compiling)) +ifeq (yes,$(build-shared)) .PHONY: do-collate-test do-tst-fmon do-tst-locale do-tst-rpmatch tests: do-collate-test do-tst-fmon do-tst-locale do-tst-rpmatch do-collate-test: sort-test.sh $(objpfx)collate-test $(objpfx)xfrm-test \ @@ -81,6 +82,7 @@ do-tst-locale: tst-locale.sh $(ld-test-srcs) do-tst-rpmatch: tst-rpmatch.sh $(objpfx)tst-rpmatch do-tst-fmon $(SHELL) -e $< $(common-objpfx) endif +endif # Sometimes the whole collection of locale files should be installed. LOCALEDEF=$(common-objpfx)elf/ld.so --library-path $(rpath-link) $(common-objpfx)locale/localedef |