diff options
author | Bruno Haible <bruno@clisp.org> | 2001-11-12 12:24:04 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-21 22:56:33 +0200 |
commit | b2513dbc613605fe6b4fbea2130d1564dca328f5 (patch) | |
tree | a652f741b7fa35a80faf67965795a1022e5e0909 | |
parent | 16fc59ed82f19035c88eb0f72899ca669655d405 (diff) | |
download | external_gettext-b2513dbc613605fe6b4fbea2130d1564dca328f5.zip external_gettext-b2513dbc613605fe6b4fbea2130d1564dca328f5.tar.gz external_gettext-b2513dbc613605fe6b4fbea2130d1564dca328f5.tar.bz2 |
Fix an influence of automake-1.5 on "make dist".
-rw-r--r-- | intl/ChangeLog | 5 | ||||
-rw-r--r-- | intl/Makefile.in | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/intl/ChangeLog b/intl/ChangeLog index b86d004..ed03cfe 100644 --- a/intl/ChangeLog +++ b/intl/ChangeLog @@ -1,3 +1,8 @@ +2001-11-11 Bruno Haible <haible@clisp.cons.org> + + * 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 <haible@clisp.cons.org> * libgnuintl.h (_INTL_PARAMS): Renamed from PARAMS, to avoid polluting diff --git a/intl/Makefile.in b/intl/Makefile.in index aa2962b..614912e 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 |