Changeset 3771


Ignore:
Timestamp:
01/05/08 04:35:52 (5 years ago)
Author:
werner
Message:
scripts/build: fixed incorrect negation in [ ! -z ... ]
...
  • scripts/build: typo, "which" not "with"
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/target/u-boot/scripts/build

    r3769 r3771  
    2222# DEVICE=gta02v4 
    2323# 
    24 # GIT_HEAD, if defined, specifies with git head we use, e.g., 
     24# GIT_HEAD, if defined, specifies which git head we use, e.g., 
    2525# GIT_HEAD=5c740711f0ea5b51414b341b71597c4a0751be74 
    2626# 
     
    3232cd u-boot 
    3333 
    34 [ ! -z "$GIT_HEAD"] || 
     34[ -z "$GIT_HEAD"] || 
    3535  git reset --hard $GIT_HEAD 
    3636 
    3737ln -sf $SVN/trunk/src/target/u-boot/patches 
    3838 
    39 [ ! -z "$SVN_REV" ] || 
     39[ -z "$SVN_REV" ] || 
    4040  ( cd patches && svn update -r$SVN_REV; ) 
    4141 
Note: See TracChangeset for help on using the changeset viewer.