However, since Debian uses quilt, or whatever it's called, to automate the application of a series of patches, and you either don't have it on your system or don't want to bother with it (since you're only interested in the patches), you end up wanting to apply all the files from the
patches
directory of the .debian addon, and there's of course no way you'll want to do that manually.The solution: Copy the
patches/
directory from the Debian addon to the root of your orig source, and run the following shell script.#!/bin/bash while read p; do patch -p1 < ./patches/$p done < ./patches/series
By Grabthar's hammer, what a timesaver!
No comments:
Post a Comment