summaryrefslogtreecommitdiff
path: root/debian/patches/8.13/fixup
blob: f31f49751ab5ec6bf17aee51deea65a1126fbb22 (plain)
1
2
3
4
5
6
7
8
9
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;