Ignore:
Timestamp:
07/16/08 22:53:14 (5 years ago)
Author:
sam
Message:
  • bootstrap: update bootstrapping script for OpenSolaris? compatibility.
  • check-utils: do not use grep -q, OpenSolaris? doesn't know about it.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • zzuf/trunk/test/check-utils

    r2548 r2550  
    9292  exit 1 
    9393fi 
    94 if file /bin/cat | grep -q 'statically linked'; then 
     94if file /bin/cat | grep 'statically linked' >/dev/null 2>&1; then 
    9595  STATIC_CAT=1 
    9696fi 
    97 if file /bin/dd | grep -q 'statically linked'; then 
     97if file /bin/dd | grep 'statically linked' >/dev/null 2>&1; then 
    9898  STATIC_DD=1 
    9999fi 
Note: See TracChangeset for help on using the changeset viewer.