diff options
Diffstat (limited to 'debian/patches/8.13/fixup')
-rw-r--r-- | debian/patches/8.13/fixup | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/debian/patches/8.13/fixup b/debian/patches/8.13/fixup new file mode 100644 index 0000000..f31f497 --- /dev/null +++ b/debian/patches/8.13/fixup @@ -0,0 +1,10 @@ +#!/bin/sh +for file in 8.13.5*; do + cp -p $file $file.new; + chmod u+w $file.new; + sed \ + -e "s?8.13.4?8.13.5?g" \ + $file > $file.new; + mv -f $file.new $file; + chmod u-w $file; + done; |