We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent5df9d7f commit5ee6ce8Copy full SHA for 5ee6ce8
scripts/build-env/manylinux.sh
@@ -66,13 +66,13 @@ cmake --install .
66
cd ..
67
rm -rf build
68
69
-# Create symbolic link forlib tolib64 if it doesn't exist
70
-echo"Checking for symbolic link fromlib tolib64..."
+# Create symbolic link forlib64 tolib if it doesn't exist
+echo"Checking for symbolic link fromlib64 tolib..."
71
if [!-L"lib64" ]&& [-d"lib" ];then
72
-echo"Creating symbolic link forlib tolib64..."
73
- ln -sliblib64
+echo"Creating symbolic link forlib64 tolib..."
+ ln -s lib64 lib
74
else
75
-echo"Symbolic link forlib tolib64 already exists orlib does not exist."
+echo"Symbolic link forlib64 tolib already exists orlib64 does not exist."
76
fi
77
78
cd ../..