Skip to content
Snippets Groups Projects
Commit ba29b3e8 authored by Pere Mato Vila's avatar Pere Mato Vila
Browse files

Added JUPYTER_PATH to thisroot.[c]sh

parent d54fb506
No related branches found
No related tags found
No related merge requests found
...@@ -111,6 +111,14 @@ if ($?old_rootsys) then ...@@ -111,6 +111,14 @@ if ($?old_rootsys) then
-e "s;${old_rootsys}:;;g" \ -e "s;${old_rootsys}:;;g" \
-e "s;${old_rootsys};;g"` -e "s;${old_rootsys};;g"`
endif endif
if ($?JUPYTER_PATH) then
setenv JUPYTER_PATH `echo $JUPYTER_PATH | \
sed -e "s;:$old_rootsys/etc/notebook:;:;g" \
-e "s;:$old_rootsys/etc/notebook;;g" \
-e "s;$old_rootsys/etc/notebook:;;g" \
-e "s;$old_rootsys/etc/notebook;;g"`
endif
endif endif
...@@ -169,6 +177,12 @@ else ...@@ -169,6 +177,12 @@ else
setenv CMAKE_PREFIX_PATH ${ROOTSYS} setenv CMAKE_PREFIX_PATH ${ROOTSYS}
endif endif
if ($?JUPYTER_PATH) then
setenv JUPYTER_PATH ${ROOTSYS}/etc/notebook:$JUPYTER_PATH
else
setenv JUPYTER_PATH ${ROOTSYS}/etc/notebook
endif
endif # if ("$thisroot" != "") endif # if ("$thisroot" != "")
set thisroot= set thisroot=
......
...@@ -77,6 +77,11 @@ if [ -n "${old_rootsys}" ] ; then ...@@ -77,6 +77,11 @@ if [ -n "${old_rootsys}" ] ; then
drop_from_path $CMAKE_PREFIX_PATH ${old_rootsys} drop_from_path $CMAKE_PREFIX_PATH ${old_rootsys}
CMAKE_PREFIX_PATH=$newpath CMAKE_PREFIX_PATH=$newpath
fi fi
if [ -n "${JUPYTER_PATH}" ]; then
drop_from_path $JUPYTER_PATH ${old_rootsys}/etc/notebook
JUPYTER_PATH=$newpath
fi
fi fi
if [ -z "${MANPATH}" ]; then if [ -z "${MANPATH}" ]; then
...@@ -136,6 +141,11 @@ else ...@@ -136,6 +141,11 @@ else
CMAKE_PREFIX_PATH=$ROOTSYS:$CMAKE_PREFIX_PATH; export CMAKE_PREFIX_PATH CMAKE_PREFIX_PATH=$ROOTSYS:$CMAKE_PREFIX_PATH; export CMAKE_PREFIX_PATH
fi fi
if [ -z "${JUPYTER_PATH}" ]; then
JUPYTER_PATH=$ROOTSYS/etc/notebook; export JUPYTER_PATH # Linux, ELF HP-UX
else
JUPYTER_PATH=$ROOTSYS/etc/notebook:$JUPYTER_PATH; export JUPYTER_PATH
fi
if [ "x`root-config --arch | grep -v win32gcc | grep -i win32`" != "x" ]; then if [ "x`root-config --arch | grep -v win32gcc | grep -i win32`" != "x" ]; then
ROOTSYS="`cygpath -w $ROOTSYS`" ROOTSYS="`cygpath -w $ROOTSYS`"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment