summarylogtreecommitdiffstats
path: root/cling-jupyter-path.diff
diff options
context:
space:
mode:
Diffstat (limited to 'cling-jupyter-path.diff')
-rw-r--r--cling-jupyter-path.diff22
1 files changed, 0 insertions, 22 deletions
diff --git a/cling-jupyter-path.diff b/cling-jupyter-path.diff
deleted file mode 100644
index 66a67bd0c2b3..000000000000
--- a/cling-jupyter-path.diff
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/tools/Jupyter/kernel/clingkernel.py b/tools/Jupyter/kernel/clingkernel.py
-index befb193..a1c796c 100644
---- a/tools/Jupyter/kernel/clingkernel.py
-+++ b/tools/Jupyter/kernel/clingkernel.py
-@@ -67,11 +67,12 @@ class ClingKernel(Kernel):
-
- def __init__(self, **kwargs):
- super(ClingKernel, self).__init__(**kwargs)
-- try:
-- whichCling = shutil.which('cling')
-- except AttributeError:
-- from distutils.spawn import find_executable
-- whichCling = find_executable('cling')
-+ #try:
-+ # whichCling = shutil.which('cling')
-+ #except AttributeError:
-+ # from distutils.spawn import find_executable
-+ # whichCling = find_executable('cling')
-+ whichCling = "/opt/cling/bin/cling"
- if whichCling:
- clingInstDir = os.path.dirname(os.path.dirname(whichCling))
- llvmResourceDir = clingInstDir