summaryrefslogtreecommitdiffstats
path: root/intl
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2001-05-22 16:59:16 +0000
committerBruno Haible <bruno@clisp.org>2001-05-22 16:59:16 +0000
commit32e355b62074df24bc9e02549929a8679205042a (patch)
tree3ff1b6a83286f78bb0d7f164d3102cfcdb051ef4 /intl
parentd8a72bc3f17e4cc9ac39dcd62e2be985578b842f (diff)
downloadexternal_gettext-32e355b62074df24bc9e02549929a8679205042a.zip
external_gettext-32e355b62074df24bc9e02549929a8679205042a.tar.gz
external_gettext-32e355b62074df24bc9e02549929a8679205042a.tar.bz2
plural.c gets installed now.
Diffstat (limited to 'intl')
-rw-r--r--intl/ChangeLog5
-rw-r--r--intl/Makefile.in8
2 files changed, 12 insertions, 1 deletions
diff --git a/intl/ChangeLog b/intl/ChangeLog
index 88b93ec..5705302 100644
--- a/intl/ChangeLog
+++ b/intl/ChangeLog
@@ -1,3 +1,8 @@
+2001-05-22 Bruno Haible <haible@clisp.cons.org>
+
+ * Makefile.in (install-data): Install plural.c as well.
+ (uninstall): Uninstall plural.c as well.
+
2001-05-18 Bruno Haible <haible@clisp.cons.org>
* Makefile.in (dist): Don't assume $(srcdir) = ".". Distribute
diff --git a/intl/Makefile.in b/intl/Makefile.in
index 078be48..889ba23 100644
--- a/intl/Makefile.in
+++ b/intl/Makefile.in
@@ -190,6 +190,12 @@ install-data: all
$(DESTDIR)$(gettextsrcdir)/$$file; \
done; \
chmod a+x $(DESTDIR)$(gettextsrcdir)/config.charset; \
+ dists="$(DISTFILES.generated)"; \
+ for file in $$dists; do \
+ if test -f $$file; then dir=.; else dir=$(srcdir); fi; \
+ $(INSTALL_DATA) $$dir/$$file \
+ $(DESTDIR)$(gettextsrcdir)/$$file; \
+ done; \
dists="$(DISTFILES.obsolete)"; \
for file in $$dists; do \
rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
@@ -237,7 +243,7 @@ uninstall:
: ; \
fi
if test "$(PACKAGE)" = "gettext"; then \
- for file in VERSION ChangeLog $(DISTFILES.common); do \
+ for file in VERSION ChangeLog $(DISTFILES.common) $(DISTFILES.generated); do \
rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
done; \
else \