From 0ecbc004a0c552533e0827474b5ba65c768f6335 Mon Sep 17 00:00:00 2001 From: Eric Wollesen Date: Tue, 13 Dec 2016 20:36:12 -0700 Subject: [PATCH] Fix for contrib/make_deb.bash on Ubuntu 16.04 The Makefile had tabs in a few places, which tripped up sed. This version should still work in debian, while also working in Xenial. --- contrib/make_deb.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/make_deb.bash b/contrib/make_deb.bash index 02199b48..26214fdd 100755 --- a/contrib/make_deb.bash +++ b/contrib/make_deb.bash @@ -113,7 +113,7 @@ function main { ## FIXME: make a patch echo "Disabling copying the README file to the doc directory" - sed -r -i 's,(install -m [0-9]+ \.\./README\.asciidoc .+),#\1,' "${DIR_KAKOUNE}/Makefile" + sed -r -i 's,(install.*\.\./README\.asciidoc.+),#\1,' "${DIR_KAKOUNE}/Makefile" ## FIXME: make a patch echo "Setting the prefix of the installation procedure"