mirror of
https://github.com/rkd77/elinks.git
synced 2025-09-21 19:46:23 -04:00
[windows] build static
This commit is contained in:
15
doc/tools/elinks_wine.py
Normal file
15
doc/tools/elinks_wine.py
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
if __name__ == '__main__':
|
||||
was_elinks = False
|
||||
with os.popen('wine {0} {1}'.format(os.getenv('ELINKS_BINARY'), sys.argv[1]), 'r') as fi:
|
||||
for line in fi:
|
||||
if not was_elinks:
|
||||
if not line.startswith('ELinks'):
|
||||
continue
|
||||
was_elinks = True
|
||||
print(line, end='')
|
||||
sys.exit(0)
|
Reference in New Issue
Block a user