mirror of https://github.com/xemu-project/xemu.git
scripts/download-macos-libs.py: Patch out epoxy.pc Requires.private
This commit is contained in:
parent
1eced78a07
commit
708445a8dd
|
@ -149,7 +149,9 @@ class LibInstaller:
|
||||||
if pkg_name.startswith('openssl'): # FIXME
|
if pkg_name.startswith('openssl'): # FIXME
|
||||||
new_prefix = f'prefix={self._extract_path}/opt/local/libexec/openssl11\n'
|
new_prefix = f'prefix={self._extract_path}/opt/local/libexec/openssl11\n'
|
||||||
lines[i] = new_prefix
|
lines[i] = new_prefix
|
||||||
break
|
elif l.strip().startswith('Requires.private:'):
|
||||||
|
if pkg_name.startswith('libepoxy'):
|
||||||
|
lines[i] = ''
|
||||||
with open(extracted_path, 'w') as f:
|
with open(extracted_path, 'w') as f:
|
||||||
f.write(''.join(lines))
|
f.write(''.join(lines))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue