Changeset 1331:a4e770364466


Ignore:
Timestamp:
09/03/09 22:01:39 (2 years ago)
Author:
niam
Branch:
default
Message:

configure: supress which output to stderr if no program was found

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure

    r1286 r1331  
    53255325 
    53265326 
    5327 TAGS=$(which etags) 
     5327TAGS=$(which etags 2>/dev/null) 
    53285328if test -z "$TAGS" -o ! -x "$TAGS" 
    53295329then 
    5330         TAGS=$(which ctags) 
     5330        TAGS=$(which ctags 2>/dev/null) 
    53315331        if test -z "$TAGS" -o ! -x "$TAGS" 
    53325332        then 
  • trunk/configure.in

    r1286 r1331  
    6363 
    6464AC_SUBST(TAGS) 
    65 TAGS=$(which etags) 
     65TAGS=$(which etags 2>/dev/null) 
    6666if test -z "$TAGS" -o ! -x "$TAGS" 
    6767then 
    68         TAGS=$(which ctags) 
     68        TAGS=$(which ctags 2>/dev/null) 
    6969        if test -z "$TAGS" -o ! -x "$TAGS" 
    7070        then 
Note: See TracChangeset for help on using the changeset viewer.