You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-09-12 18:50:20 -07:00
Move the patching code out of the debian rules into a Makefile.
This commit is contained in:
13
patches/Makefile
Normal file
13
patches/Makefile
Normal file
@@ -0,0 +1,13 @@
|
||||
install:
|
||||
# Apply our patches to Wine
|
||||
for DIR in $$(find $(CURDIR) -type d | sort); do \
|
||||
for FILE in $$(ls $$DIR | sort | grep '\.patch$$'); do \
|
||||
patch -d $(DESTDIR) -N -p0 --strip=1 < $$DIR/$$FILE || exit 1; \
|
||||
done \
|
||||
done
|
||||
|
||||
# Update the configure script
|
||||
cd $(DESTDIR); autoreconf;
|
||||
|
||||
# Update the wineserver protocol request data
|
||||
cd $(DESTDIR); ./tools/make_requests;
|
Reference in New Issue
Block a user