qtltools: fix prefix in Makefile (#31929)

This commit is contained in:
dunatotatos 2022-08-05 08:03:25 +02:00 committed by GitHub
parent ddc373b4e1
commit 739d98801f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,3 +28,4 @@ def edit(self, spec, prefix):
makefile.filter("RMATH_LIB=.*", "RMATH_LIB=" + self.spec["r"].prefix.rlib)
makefile.filter("HTSLD_INC=.*", "HTSLD_INC=" + self.spec["htslib"].prefix.include)
makefile.filter("HTSLD_LIB=.*", "HTSLD_LIB=" + self.spec["htslib"].prefix.lib)
makefile.filter("prefix *=.*", "prefix = " + prefix)