From: Bruno Haible Date: Mon, 12 Nov 2001 12:24:04 +0000 (+0000) Subject: Fix an influence of automake-1.5 on "make dist". X-Git-Tag: v0.11~311 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2513dbc613605fe6b4fbea2130d1564dca328f5;p=thirdparty%2Fgettext.git Fix an influence of automake-1.5 on "make dist". --- diff --git a/intl/ChangeLog b/intl/ChangeLog index b86d004d3..ed03cfe22 100644 --- a/intl/ChangeLog +++ b/intl/ChangeLog @@ -1,3 +1,8 @@ +2001-11-11 Bruno Haible + + * Makefile.in (dist): Avoid using hard links, because the automake-1.5 + generated toplevel 'distdir' target chmods all the distributed files. + 2001-11-10 Bruno Haible * libgnuintl.h (_INTL_PARAMS): Renamed from PARAMS, to avoid polluting diff --git a/intl/Makefile.in b/intl/Makefile.in index aa2962b7f..614912ee1 100644 --- a/intl/Makefile.in +++ b/intl/Makefile.in @@ -323,8 +323,7 @@ dist distdir: Makefile $(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; \ - ln $$dir/$$file $(distdir) 2> /dev/null \ - || cp -p $$dir/$$file $(distdir); \ + cp -p $$dir/$$file $(distdir); \ done Makefile: Makefile.in ../config.status