You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
263 B
8 lines
263 B
misc_debian_patch() {
|
|
egrep -v '^#' debian/patches/series | xargs -I% patch -p1 -i debian/patches/%
|
|
}
|
|
|
|
misc_debian_patch_exclude() {
|
|
fgrep -vx "$1" debian/patches/series > debian/patches/series.new
|
|
mv debian/patches/series.new debian/patches/series
|
|
}
|
|
|