This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

PATCH: contrib/egcs_update


On Wed, 25 Nov 1998, Jeffrey A Law wrote:
> Absolutely!  You should actually feel free to update any of your stuff
> in the contrib dir without approvals.  Seems kind of silly for someone
> to have to approve those changes since you wrote the code to begin with :-)

Okay, so I went ahead and installed the following.

(Previously we would generate warnings for files belonging to subtrees
not in the local copy of the repository, like gcc/java or libf2c if one
is not interested in these lanaguages.)


1998-11-30  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>

        * egcs_update: Only touch files that already exist.

Index: egcs_update
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/contrib/egcs_update,v
retrieving revision 1.10
retrieving revision 1.11
diff -r1.10 -r1.11
91c91,93
<       touch $f
---
>       if [ -f $f ]; then
>               touch $f
>       fi



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]