Do not prelink already prelinked libraries.

master
Kolan Sh 2015-02-27 14:39:00 +03:00
parent b332c77908
commit c48a36d4e7
1 changed files with 2 additions and 2 deletions

View File

@ -519,8 +519,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 -avfmqR
[ 0 -ne $? ] && echo "Stage $STAGE: prelink -avfmqR failed ;-( =======" && exit $STAGE
$NICE_CMD prelink -avmqR
[ 0 -ne $? ] && echo "Stage $STAGE: prelink -avmqR failed ;-( =======" && exit $STAGE
fi
let STAGE++