mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 847918 - install
command for mach. r=gps
This commit is contained in:
parent
2402979f16
commit
c32954c4a7
@ -310,6 +310,14 @@ class Package(MachCommandBase):
|
||||
def package(self):
|
||||
return self._run_make(directory=".", target='package', ensure_exit_code=False)
|
||||
|
||||
@CommandProvider
|
||||
class Install(MachCommandBase):
|
||||
"""Install a package."""
|
||||
|
||||
@Command('install', help='Install the package on the machine, or on a device.')
|
||||
def install(self):
|
||||
return self._run_make(directory=".", target='install', ensure_exit_code=False)
|
||||
|
||||
@CommandProvider
|
||||
class Buildsymbols(MachCommandBase):
|
||||
"""Produce a package of debug symbols suitable for use with Breakpad."""
|
||||
|
Loading…
Reference in New Issue
Block a user