From: Jim Meyering Date: Sat, 4 Mar 2000 08:56:13 +0000 (+0000) Subject: (dist-info): X-Git-Tag: Release-1-4b~121 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=729f04be99a7586b67302dbd6d8c59b47a97ad65;p=automake.git (dist-info): Don't use `ln' (which was just a space optimization anyway) to populate $(distdir). Otherwise, the dist rules that change permissions would end up affecting the master sources. --- diff --git a/lib/am/texinfos.am b/lib/am/texinfos.am index da022d84..9f63f02e 100644 --- a/lib/am/texinfos.am +++ b/lib/am/texinfos.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-98, 1999 Free Software Foundation, Inc. +## Copyright (C) 1994-98, 1999, 2000 Free Software Foundation, Inc. ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -203,7 +203,6 @@ NOTCYGNUS d=$(srcdir); \ CYGNUS if test -f $$base; then d=.; else d=$(srcdir); fi; \ for file in `CDPATH=: && cd $$d && eval echo $$base*`; do \ test -f $(distdir)/$$file \ - || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ || cp -p $$d/$$file $(distdir)/$$file; \ done; \ done diff --git a/texinfos.am b/texinfos.am index da022d84..9f63f02e 100644 --- a/texinfos.am +++ b/texinfos.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-98, 1999 Free Software Foundation, Inc. +## Copyright (C) 1994-98, 1999, 2000 Free Software Foundation, Inc. ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -203,7 +203,6 @@ NOTCYGNUS d=$(srcdir); \ CYGNUS if test -f $$base; then d=.; else d=$(srcdir); fi; \ for file in `CDPATH=: && cd $$d && eval echo $$base*`; do \ test -f $(distdir)/$$file \ - || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ || cp -p $$d/$$file $(distdir)/$$file; \ done; \ done