summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-petsc4py/ldshared.patch
blob: 026a48722e53af7fc830452260724d9f41b1810c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/conf/baseconf.py b/conf/baseconf.py
index 8a2466a5bd..73c08b923a 100644
--- a/conf/baseconf.py
+++ b/conf/baseconf.py
@@ -211,7 +211,7 @@ class PetscConfig:
         ldshared = getenv('LDSHARED', ldshared)
         ldflags = getenv('LDFLAGS', cflags + ' ' + (ldflags or ''))
         ldcmd = split_quoted(ld) + split_quoted(ldflags)
-        ldshared = [flg for flg in split_quoted(ldshared) if flg not in ldcmd]
+        ldshared = [flg for flg in split_quoted(ldshared) if flg not in ldcmd and (flg.find('/lib/spack/env')<0)]
         ldshared = str.join(' ', ldshared)
         #
         def get_flags(cmd):