From 736b88e7e35f1ae2b9dfd9e5f024e87917b8f8ed Mon Sep 17 00:00:00 2001 From: david Date: Mon, 12 Jan 2009 03:20:58 -0500 Subject: [PATCH] replace source with ., more independent --- bash_profile | 2 +- zsh/icc | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bash_profile b/bash_profile index 86795d7..d1fb79b 100644 --- a/bash_profile +++ b/bash_profile @@ -1 +1 @@ -source ~/.bashrc +. ~/.bashrc diff --git a/zsh/icc b/zsh/icc index 92a299d..9652e8f 100755 --- a/zsh/icc +++ b/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