aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authorGravatar Shanqing Cai <cais@google.com>2017-01-08 20:31:30 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-01-08 20:47:05 -0800
commitefd40e5b73a08525909cbee036df44205e839c0d (patch)
tree1d9ba170bb277e43ee1219b0f1b122afb0fc17a6 /configure
parentbbdf8811ce81166b3e46c05ceddaa255bf869ef6 (diff)
Merge changes from github.
Change: 143922699
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure b/configure
index b68a3d2381..8d4b12aad2 100755
--- a/configure
+++ b/configure
@@ -289,7 +289,11 @@ while true; do
echo "libcudnn.dylib resolves to libcudnn${TF_CUDNN_EXT}"
fi
else
- TF_CUDNN_EXT=".$TF_CUDNN_VERSION"
+ if [ "$OSNAME" == "Darwin" ]; then
+ TF_CUDNN_EXT=".${TF_CUDNN_VERSION}.dylib"
+ else
+ TF_CUDNN_EXT=".$TF_CUDNN_VERSION"
+ fi
fi
if is_windows; then