mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-04-13 09:30:06 +00:00
replace source with ., more independent
This commit is contained in:
parent
256a3daad2
commit
736b88e7e3
2 changed files with 5 additions and 5 deletions
|
@ -1 +1 @@
|
|||
source ~/.bashrc
|
||||
. ~/.bashrc
|
||||
|
|
8
zsh/icc
8
zsh/icc
|
@ -4,19 +4,19 @@ if [ -d "/opt/intel/Compiler" ] ; then
|
|||
if [ -r $iccvars_path ] ; then
|
||||
case `uname -m` in
|
||||
x86_64)
|
||||
source $iccvars_path intel64
|
||||
. $iccvars_path intel64
|
||||
;;
|
||||
i*86)
|
||||
source $iccvars_path ia32
|
||||
. $iccvars_path ia32
|
||||
;;
|
||||
ia64)
|
||||
source $iccvars_path ia64
|
||||
. $iccvars_path ia64
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
elif [ -d "/opt/intel/cc" ] || [ -d "/opt/intel/cce" ] ; then
|
||||
iccvars_path=$(echo /opt/intel/cc*/(10|9).*/bin/iccvars.sh(On[1]))
|
||||
if [ -r $iccvars_path ] ; then
|
||||
source $iccvars_path
|
||||
. $iccvars_path
|
||||
fi
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue