mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-01-28 22:04:43 -08:00
patchinstall.py: Allow specifying DESTDIR= as an argument.
This commit is contained in:
parent
4d98c8839b
commit
1f76f7faec
@ -214,7 +214,11 @@ def main():
|
||||
print(f.read().rstrip());
|
||||
sys.exit(0)
|
||||
|
||||
for a in args: add_patchset(patchlist, a)
|
||||
for a in args:
|
||||
if a.startswith('DESTDIR='):
|
||||
winedir = a[8:]
|
||||
else:
|
||||
add_patchset(patchlist, a)
|
||||
|
||||
for p in excluded: del patchlist[p]
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user