We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fbb4eb commit f273f01Copy full SHA for f273f01
get_deps.sh
@@ -27,7 +27,11 @@ if [ ! -d dlpack ]; then
27
fi
28
29
mkdir -p ${PREFIX}
30
-cp -d -r --no-preserve=ownership dlpack/include ${PREFIX}
+if [[ "$OSTYPE" == "linux-gnu" ]]; then
31
+ cp -d -r --no-preserve=ownership dlpack/include ${PREFIX}
32
+elif [[ "$OSTYPE" == "darwin"* ]]; then
33
+ cp -r dlpack/include ${PREFIX}
34
+fi
35
36
## TENSORFLOW
37
TF_VERSION="1.12.0"
0 commit comments