+2005-03-06 Bruno Haible <bruno@clisp.org>
+
+ * Makefile.in (dist, distdir): Fail if some of the files to be
+ distributed do not exist or cannot be copied.
+ Suggested by Alexandre Duret-Lutz <adl@src.lip6.fr>.
+
2005-02-24 Bruno Haible <bruno@clisp.org>
* gettext-0.14.2 released.
$(MAKE) $(DISTFILES.common) $(DISTFILES.generated) $$additional; \
for file in ChangeLog $(DISTFILES.common) $(DISTFILES.generated) $$additional; do \
if test -f $$file; then dir=.; else dir=$(srcdir); fi; \
- cp -p $$dir/$$file $(distdir); \
+ cp -p $$dir/$$file $(distdir) || exit 1; \
done; \
fi
+2005-03-06 Bruno Haible <bruno@clisp.org>
+
+ * Makefile.in.in (dist2): Fail if some of the files to be distributed
+ do not exist or cannot be copied.
+ Suggested by Alexandre Duret-Lutz <adl@src.lip6.fr>.
+
2005-03-06 Bruno Haible <bruno@clisp.org>
* Makefile.in.in (DISTFILES): Remove $(DOMAIN).pot, stamp-po.
if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \
for file in $$dists; do \
if test -f $$file; then \
- cp -p $$file $(distdir); \
+ cp -p $$file $(distdir) || exit 1; \
else \
- cp -p $(srcdir)/$$file $(distdir); \
+ cp -p $(srcdir)/$$file $(distdir) || exit 1; \
fi; \
done
+2005-03-06 Bruno Haible <bruno@clisp.org>
+
+ * gettext.texi (src/Makefile): Adjust example 'dist' target.
+ Suggested by Alexandre Duret-Lutz <adl@src.lip6.fr>.
+
2005-02-24 Bruno Haible <bruno@clisp.org>
* gettext-0.14.2 released.
distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
dist: Makefile $(DISTFILES)
for file in $(DISTFILES); do \
- ln $$file $(distdir) 2>/dev/null || cp -p $$file $(distdir); \
+ ln $$file $(distdir) 2>/dev/null || cp -p $$file $(distdir) || exit 1; \
done
@end example
+2005-03-06 Bruno Haible <bruno@clisp.org>
+
+ * Makefile.in.in (dist2): Fail if some of the files to be distributed
+ do not exist or cannot be copied.
+ Suggested by Alexandre Duret-Lutz <adl@src.lip6.fr>.
+
2005-03-06 Bruno Haible <bruno@clisp.org>
* Makefile.in.in (DISTFILES): Remove $(DOMAIN).pot, stamp-po.
if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \
for file in $$dists; do \
if test -f $$file; then \
- cp -p $$file $(distdir); \
+ cp -p $$file $(distdir) || exit 1; \
else \
- cp -p $(srcdir)/$$file $(distdir); \
+ cp -p $(srcdir)/$$file $(distdir) || exit 1; \
fi; \
done