From 847bcfa89c4fab074f23e3c27c5a7c80b8865d7d Mon Sep 17 00:00:00 2001 From: Dana Singh <115384427+singhd789@users.noreply.github.com> Date: Tue, 22 Oct 2024 10:36:05 -0400 Subject: [PATCH] Fix LD_LIBRARY_PATH env. var. name --- fre/make/gfdlfremake/buildDocker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fre/make/gfdlfremake/buildDocker.py b/fre/make/gfdlfremake/buildDocker.py index 15b77476..6d33d0d2 100644 --- a/fre/make/gfdlfremake/buildDocker.py +++ b/fre/make/gfdlfremake/buildDocker.py @@ -154,7 +154,7 @@ def writeRunscript(self,RUNenv,containerRun,runOnDisk): """ #create runscript in tmp - create spack environment, install necessary packages, self.createscript = ["#!/bin/bash \n", - "export BACKUP_LD_LIBRARY_PATH=$LD_LIBRARY\n", + "export BACKUP_LD_LIBRARY_PATH=$LD_LIBRARY_PATH\n", "# Set up spack loads\n", RUNenv[0]+"\n"] with open(runOnDisk,"w") as f: