openssh: no pie for %nvhpc (#30189)
This commit is contained in:
parent
7118602251
commit
ac9bd3d72d
1 changed files with 4 additions and 0 deletions
|
@ -67,6 +67,10 @@ def configure_args(self):
|
|||
# least newer versions want to create the directory during the
|
||||
# install step and fail if they cannot do so.
|
||||
args = ['--with-privsep-path={0}'.format(self.prefix.var.empty)]
|
||||
|
||||
# Somehow creating pie executables fails with nvhpc, not with gcc.
|
||||
if '%nvhpc' in self.spec:
|
||||
args.append('--without-pie')
|
||||
return args
|
||||
|
||||
def install(self, spec, prefix):
|
||||
|
|
Loading…
Reference in a new issue