This is the mail archive of the gcc@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]
Other format: [Raw text]

Re: tree-ssa branch: Fortran libraries don't build


On Thu, May 08, 2003 at 10:03:04AM -0400, Andrew Pinski wrote:
> I do not think this will work since the pervious egrep will get rid of 
> the branch name before the new one is ran,
> The additional egrep will get rid of all the previous (release) 
> branches.
> 
Oh, right.  Serves me right for trying to play cute.  This one
based on brute force and ignorance should work.


Diego.

	* update_version (BRANCHES): Add tree-ssa branch.

Index: update_version
===================================================================
RCS file: /cvs/gcc/gcc/maintainer-scripts/update_version,v
retrieving revision 1.11
diff -d -u -p -r1.11 update_version
--- update_version	4 May 2003 22:51:26 -0000	1.11
+++ update_version	8 May 2003 14:19:00 -0000
@@ -14,10 +14,11 @@ CVS=${CVS:-/usr/local/bin/cvs}
 
 # Compute the branches which we should update.
 $CVS co gcc/ChangeLog
-BRANCHES=`$CVS status -v gcc/ChangeLog \
-          | awk '{print $1;}' \
-          | egrep 'gcc-[0-9]+_[0-9]+-branch$' \
-          | egrep -v $IGNORE_BRANCHES`
+BRANCHES="`$CVS status -v gcc/ChangeLog \
+           | awk '{print $1;}' \
+           | egrep 'gcc-[0-9]+_[0-9]+-branch$' \
+           | egrep -v $IGNORE_BRANCHES` \
+	   tree-ssa-20020619-branch"
 # Always update the mainline.
 BRANCHES="${BRANCHES} HEAD"
 


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