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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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++']