File apply-patches of Package jellyfin-ffmpeg
#!/bin/sh # # Given a series file and a directory with patches, applies them to the # current directory. for p in $(cat debian/patches/series); do patch -p1 < debian/patches/$p || break; done
#!/bin/sh # # Given a series file and a directory with patches, applies them to the # current directory. for p in $(cat debian/patches/series); do patch -p1 < debian/patches/$p || break; done