Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 226105 - [science-overlay] eselect-mpi environment broken for csh users
Summary: [science-overlay] eselect-mpi environment broken for csh users
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Justin Bronder (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-06-12 18:12 UTC by Bryan Green
Modified: 2008-06-13 14:02 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Bryan Green 2008-06-12 18:12:57 UTC
There is a wee bug in the mpi.eselect file that effects csh users.  There is a 'setenv' line that uses bash syntax rather than csh syntax.
The fix is very simple.  Here is the patch:

--- files/mpi.eselect-0.0.3	(revision 1137)
+++ files/mpi.eselect-0.0.3	(working copy)
@@ -161,7 +161,7 @@
 setenv PATH "${binpath}"
 setenv MANPATH "${manpath}"
 setenv LD_LIBRARY_PATH "${lld}"
-setenv ESELECT_MPI_IMP="${1}"
+setenv ESELECT_MPI_IMP "${1}"
 EOF
 
     echo "Remember to source ${user_ev_sh} or ${user_ev_csh}"



Reproducible: Always

Steps to Reproduce:
Comment 1 Justin Bronder (RETIRED) gentoo-dev 2008-06-13 14:02:19 UTC
Should be fixed in the overlay in mpi-eselect-0.0.3-r1.  Thanks for the report.