From e4a3295c37f3bc68a659f7400ef3315d75b6e2ca Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Sun, 21 May 2017 06:40:59 +0200 Subject: spark: remove whitespaces from run_env variable (#4210) --- var/spack/repos/builtin/packages/spark/package.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'var') diff --git a/var/spack/repos/builtin/packages/spark/package.py b/var/spack/repos/builtin/packages/spark/package.py index 3bc6abd234..e955a75985 100644 --- a/var/spack/repos/builtin/packages/spark/package.py +++ b/var/spack/repos/builtin/packages/spark/package.py @@ -22,10 +22,11 @@ # License along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ############################################################################## -from spack import * - +import re import shutil +from spack import * + class Spark(Package): """Apache Spark is a fast and general engine @@ -72,4 +73,8 @@ class Spark(Package): hadoop = self.spec['hadoop'].command hadoop_classpath = hadoop('classpath', return_output=True) + # Remove whitespaces, as they can compromise syntax in + # module files + hadoop_classpath = re.sub('[\s+]', '', hadoop_classpath) + run_env.set('SPARK_DIST_CLASSPATH', hadoop_classpath) -- cgit v1.2.3-70-g09d2