Optimizing Prelink for speed.

This commit is contained in:
Kolan Sh 2012-11-25 01:10:17 +04:00
parent b34ea829ca
commit 03470b0f53
1 changed files with 2 additions and 2 deletions

View File

@ -458,8 +458,8 @@ let STAGE_CNT++
if [ $STAGE_CNT -eq $STAGE ]; then
echo "======= STAGE $STAGE: Prelink libraries ======="
if [ `which prelink 2>/dev/null` ]; then
$NICE_CMD prelink -avfmRq
[ 0 -ne $? ] && echo "Stage $STAGE: prelink -avfmR failed ;-( =======" && exit $STAGE
$NICE_CMD prelink -avfmqR
[ 0 -ne $? ] && echo "Stage $STAGE: prelink -avfmqR failed ;-( =======" && exit $STAGE
fi
let STAGE++