From: Bruno Haible Date: Fri, 10 Nov 2000 20:43:50 +0000 (+0000) Subject: Tweak the dist target. X-Git-Tag: v0.10.36~215 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c30bd128ac678dc685e777498f7c3519539d5e29;p=thirdparty%2Fgettext.git Tweak the dist target. --- diff --git a/po/ChangeLog b/po/ChangeLog index d91bf15e4..8a0e8361c 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,10 @@ +2000-11-10 Bruno Haible + + * po/Makefile.in.in (dist, distdir): Don't use 'ln' (which was just a + space optimization anyway) to populate $(distdir). Otherwise, the + dist rules that change permissions end up affecting the master + sources. From Jim Meyering . + 2000-11-09 Bruno Haible * tr.po: New file. diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 3a63bfe9e..c34b98f30 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -192,8 +192,7 @@ dist distdir: $(DISTFILES) $(MAKE) update-po dists="$(DISTFILES)"; \ for file in $$dists; do \ - ln $(srcdir)/$$file $(distdir) 2> /dev/null \ - || cp -p $(srcdir)/$$file $(distdir); \ + cp -p $(srcdir)/$$file $(distdir); \ done update-po: Makefile