From: Bruno Haible Date: Tue, 4 Dec 2001 19:26:49 +0000 (+0000) Subject: Don't create an empty libdir. X-Git-Tag: v0.11~228 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=630f7653110811aedabba384cc45ec3657a92b63;p=thirdparty%2Fgettext.git Don't create an empty libdir. --- diff --git a/intl/ChangeLog b/intl/ChangeLog index 9642d48d2..d632e6543 100644 --- a/intl/ChangeLog +++ b/intl/ChangeLog @@ -1,3 +1,8 @@ +2001-12-03 Bruno Haible + + * Makefile.in (install-exec): Don't create an empty libdir. + (installdirs): Update accordingly. + 2001-11-30 Bruno Haible * plural-exp.h (plural_eval): Add back declaration. diff --git a/intl/Makefile.in b/intl/Makefile.in index 6c071f110..3b93c96a7 100644 --- a/intl/Makefile.in +++ b/intl/Makefile.in @@ -153,7 +153,7 @@ install-exec: all : ; \ fi if test '@USE_INCLUDED_LIBINTL@' = yes; then \ - $(mkinstalldirs) $(DESTDIR)$(libdir); \ + test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir); \ temp=$(DESTDIR)$(libdir)/t-charset.alias; \ dest=$(DESTDIR)$(libdir)/charset.alias; \ if test -f $(DESTDIR)$(libdir)/charset.alias; then \ @@ -216,7 +216,8 @@ installdirs: : ; \ fi if test '@USE_INCLUDED_LIBINTL@' = yes; then \ - $(mkinstalldirs) $(DESTDIR)$(libdir); $(DESTDIR)$(localedir); \ + test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir); \ + $(mkinstalldirs) $(DESTDIR)$(localedir); \ else \ : ; \ fi