| Index: chrome/tools/build/linux/chrome-wrapper
|
| ===================================================================
|
| --- chrome/tools/build/linux/chrome-wrapper (revision 36781)
|
| +++ chrome/tools/build/linux/chrome-wrapper (working copy)
|
| @@ -94,7 +94,7 @@
|
| if [ -e "$dir/libbz2.so.1" ]; then
|
| LIB_ARCH=$(check_executable "$dir/libbz2.so.1")
|
| if [ "$CHROME_ARCH" = "$LIB_ARCH" ]; then
|
| - ln -s "$dir/libbz2.so.1" "$HERE/libbz2.so.1.0"
|
| + ln -snf "$dir/libbz2.so.1" "$HERE/libbz2.so.1.0"
|
| break;
|
| fi
|
| fi
|
| @@ -111,7 +111,7 @@
|
| if [ -e "$dir/$reallib" ]; then
|
| LIB_ARCH=$(check_executable "$dir/$reallib")
|
| if [ "$CHROME_ARCH" = "$LIB_ARCH" ]; then
|
| - ln -s "$dir/$reallib" "$HERE/$lib"
|
| + ln -snf "$dir/$reallib" "$HERE/$lib"
|
| break;
|
| fi
|
| fi
|
|
|