Changeset 47012 in webkit


Ignore:
Timestamp:
Aug 10, 2009 4:47:09 PM (15 years ago)
Author:
pkasting@chromium.org
Message:

https://bugs.webkit.org/show_bug.cgi?id=27323
Even more line ending-stripping for auto-version.sh, based on output
provided by Jessie Berlin.

Reviewed by George Staikos.

  • win/tools/scripts/auto-version.sh:
Location:
trunk/WebKitLibraries
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitLibraries/ChangeLog

    r46990 r47012  
     12009-08-10  Peter Kasting  <pkasting@google.com>
     2
     3        Reviewed by George Staikos.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=27323
     6        Even more line ending-stripping for auto-version.sh, based on output
     7        provided by Jessie Berlin.
     8
     9        * win/tools/scripts/auto-version.sh:
     10
    1112009-08-10  Brent Fulgham  <bfulgham@webkit.org>
    212
  • trunk/WebKitLibraries/win/tools/scripts/auto-version.sh

    r46872 r47012  
    6161if [ "$RC_PROJECTSOURCEVERSION" == "" ]; then
    6262    BLDNMBRSHORT="$BLDNMBRSHORT+"
    63     BLDNMBR="$BLDNMBRSHORT $(whoami) - $(date) - r$SVNOPENSOURCEREVISION"
     63    BLDUSERNAME=`echo "$(whoami)" | sed -r 's/(.*\S+)\s*$/\1/'`
     64    BLDDATE=`echo "$(date)" | sed -r 's/(.*\S+)\s*$/\1/'`
     65    BLDNMBR="$BLDNMBRSHORT $BLDUSERNAME - $BLDDATE - r$SVNOPENSOURCEREVISION"
    6466fi
    6567
Note: See TracChangeset for help on using the changeset viewer.