Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 2591

Show
Ignore:
Timestamp:
09/30/07 14:47:53 (1 year ago)
Author:
larsivi
Message:

Omit printing ranlib warnings, thanks afb, closes #621

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/build-tango.sh

    r2314 r2591  
    6969    then 
    7070        $DC -c -v1 -inline -release -O -version=Posix -version=Tango -of$OBJNAME $FILENAME 
    71         ar -r lib/$LIB $OBJNAME 
     71        ar -r lib/$LIB $OBJNAME 2>&1 | grep -v "ranlib: .* has no symbols" 
    7272        rm $OBJNAME 
    7373    fi 
     
    9797    done 
    9898 
    99     ranlib lib/$LIB 
     99    ranlib lib/$LIB 2>&1 | grep -v "ranlib: .* has no symbols" 
    100100 
    101101    cd lib