You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-04-13 14:42:51 -07:00
Allow separating patches into subfolders.
This commit is contained in:
6
debian/rules
vendored
6
debian/rules
vendored
@@ -64,8 +64,10 @@ ifneq "$(wildcard /usr/share/misc/config.guess)" ""
|
||||
endif
|
||||
|
||||
# Apply our patches to Wine
|
||||
for FILE in `ls $(CURDIR)/patches`; do \
|
||||
patch -N -p0 --strip=1 < $(CURDIR)/patches/$$FILE || exit 1; \
|
||||
for DIR in $(find $(CURDIR)/patches/ -type d | sort); do \
|
||||
for FILE in $(ls $$DIR | sort); do \
|
||||
patch -N -p0 --strip=1 < $$DIR/$$FILE || exit 1; \
|
||||
done
|
||||
done
|
||||
|
||||
# Update the configure script
|
||||
|
Reference in New Issue
Block a user