dpatel      03/01/03 17:15:07

  Modified:    live/gcc3 GNUmakefile
  Log:
  Bug #: 3138224
  
  Do not use hard coded VERSION number string, instead fgrep gcc/version.c
  to get actual string.
  
  Revision  Changes    Path
  1.33      +2 -1      src/live/gcc3/GNUmakefile
  
  Index: GNUmakefile
  ===================================================================
  RCS file: /cvs/Darwin/src/live/gcc3/GNUmakefile,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- GNUmakefile       2002/12/02 22:58:08     1.32
  +++ GNUmakefile       2003/01/04 01:15:07     1.33
  @@ -128,7 +128,8 @@
       endif
   endif
   
  -VERSION = 3.3
  +VERSION =`fgrep version_string < $(SRCROOT)/gcc/version.c | \
  +                 sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/'`
   
   ARCH = `arch`
   
  
  
  


Reply via email to