Index: /branches/eam_branches/ipp-20110213/psconfig/psbuild
===================================================================
--- /branches/eam_branches/ipp-20110213/psconfig/psbuild	(revision 31087)
+++ /branches/eam_branches/ipp-20110213/psconfig/psbuild	(revision 31088)
@@ -409,10 +409,14 @@
 
     print STDOUT "** if you use sh, bash or equivalent as your shell, add the following to your .bashrc\n";
-    print STDOUT "    if [ -f $psconfdir/psconfig.csh ]; then\n";
-    print STDOUT "      alias psconfig='source $psconfdir/psconfig.bash'\n";
-    print STDOUT "    else\n";
-    print STDOUT "      alias psconfig='echo psconfig not available'\n";
-    print STDOUT "    fi\n";
-    print STDOUT "    source $psconfdir/psconfig.bash default\n";
+    print STDOUT "    if [ -e $psconfdir/psconfig.bash ] ; then";
+    print STDOUT "        psconfig () {";
+    print STDOUT "            source $psconfdir/psconfig.bash";
+    print STDOUT "        }";
+    print STDOUT "    else";
+    print STDOUT "        psconfig () {";
+    print STDOUT "            echo psconfig not available";
+    print STDOUT "        }";
+    print STDOUT "    fi";
+    print STDOUT "    psconfig default\n";
     print STDOUT "\n";
 
