]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Don't create an empty libdir.
authorBruno Haible <bruno@clisp.org>
Tue, 4 Dec 2001 19:26:49 +0000 (19:26 +0000)
committerBruno Haible <bruno@clisp.org>
Sun, 21 Jun 2009 21:34:25 +0000 (23:34 +0200)
intl/ChangeLog
intl/Makefile.in

index 9642d48d2630efa7fce4356a81b5c3d9afc12fb5..d632e65430c37b98dda9b590770bcab24bab1aad 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-03  Bruno Haible  <bruno@clisp.org>
+
+       * Makefile.in (install-exec): Don't create an empty libdir.
+       (installdirs): Update accordingly.
+
 2001-11-30  Bruno Haible  <bruno@clisp.org>
 
        * plural-exp.h (plural_eval): Add back declaration.
index 6c071f110a52ca3a51fb9d862d9bcb6a92a7df06..3b93c96a755e736f23b7794fc9faaa696d00edb3 100644 (file)
@@ -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