mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-09-13 09:17:20 -07:00
Add instructions how to exclude patches in README.md.
This commit is contained in:
parent
49bbdc5bf2
commit
f6dd1f3d0d
14
README.md
14
README.md
@ -27,7 +27,7 @@ Besides that the following additional changes are included:
|
||||
* Workaround for shlwapi URLs with relative paths
|
||||
* XEMBED support for embedding Wine windows inside Linux applications
|
||||
|
||||
## Compiling wine-compholio
|
||||
### Compiling wine-compholio
|
||||
|
||||
In order to wine-compholio, please use the recommended Makefile based approach which
|
||||
will automatically decide whether to use 'git apply' or 'gitapply.sh'. The following
|
||||
@ -68,3 +68,15 @@ And install it (you only need sudo for a system-wide installation):
|
||||
```bash
|
||||
sudo make install
|
||||
```
|
||||
|
||||
### Excluding patches
|
||||
|
||||
It is also possible to apply only a subset of the patches, for example if you're compiling
|
||||
for a distribution where PulseAudio is not installed, or if you just don't like a specific
|
||||
patchset. Please note that some patchsets depend on each other, and requesting an impossible
|
||||
situation might result in a failure to apply all patches.
|
||||
|
||||
Lets assume you want to exclude the patchset in directory DIRNAME, then just invoke make like that:
|
||||
```bash
|
||||
make -C ./patches DESTDIR=$(pwd) install -W DIRNAME.ok
|
||||
```
|
||||
|
14
debian/tools/patchupdate.py
vendored
14
debian/tools/patchupdate.py
vendored
@ -282,7 +282,7 @@ Besides that the following additional changes are included:
|
||||
|
||||
{fixes}
|
||||
|
||||
## Compiling wine-compholio
|
||||
### Compiling wine-compholio
|
||||
|
||||
In order to wine-compholio, please use the recommended Makefile based approach which
|
||||
will automatically decide whether to use 'git apply' or 'gitapply.sh'. The following
|
||||
@ -323,6 +323,18 @@ And install it (you only need sudo for a system-wide installation):
|
||||
```bash
|
||||
sudo make install
|
||||
```
|
||||
|
||||
### Excluding patches
|
||||
|
||||
It is also possible to apply only a subset of the patches, for example if you're compiling
|
||||
for a distribution where PulseAudio is not installed, or if you just don't like a specific
|
||||
patchset. Please note that some patchsets depend on each other, and requesting an impossible
|
||||
situation might result in a failure to apply all patches.
|
||||
|
||||
Lets assume you want to exclude the patchset in directory DIRNAME, then just invoke make like that:
|
||||
```bash
|
||||
make -C ./patches DESTDIR=$(pwd) install -W DIRNAME.ok
|
||||
```
|
||||
"""
|
||||
|
||||
def generate_readme(patches, fp):
|
||||
|
Loading…
Reference in New Issue
Block a user