revocap-refiner: fixed typo in pic flags (#16694)

This commit is contained in:
h-denpo
2020-05-18 17:04:10 +09:00
committed by GitHub
parent ffdd94dd9f
commit ce8cf5d9b0

View File

@@ -24,7 +24,7 @@ class RevocapRefiner(MakefilePackage):
def edit(self, spec, prefix):
cflags = ['-O']
cxxflags = ['-O', self.compiler.pic_flag]
cxxflags = ['-O', self.compiler.cxx_pic_flag]
fflags = ['']
ldshare = ['']
libs = ['-lstdc++']