From: Jiri Popelka Date: Thu, 2 Jul 2015 11:32:48 +0000 (+0200) Subject: tools/path_replacer.sh.in: add missing backslashes X-Git-Tag: trac4267_base0~1^2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10%2Fhead;p=thirdparty%2Fkea.git tools/path_replacer.sh.in: add missing backslashes --- diff --git a/tools/path_replacer.sh.in b/tools/path_replacer.sh.in index e47fe1f436..78143708e1 100644 --- a/tools/path_replacer.sh.in +++ b/tools/path_replacer.sh.in @@ -27,4 +27,4 @@ echo "Replacing \@localstatedir\@ with ${localstatedir}" echo "Input file: $1" echo "Output file: $2" -sed -e "s@SEP@\@localstatedir\@@SEP@${localstatedir}@SEP@g; s@SEP@\@prefix@@SEP@${prefix}@SEP@g; s@SEP@\@sysconfdir@@SEP@${sysconfdir}@SEP@g" $1 > $2 +sed -e "s@SEP@\@localstatedir\@@SEP@${localstatedir}@SEP@g; s@SEP@\@prefix\@@SEP@${prefix}@SEP@g; s@SEP@\@sysconfdir\@@SEP@${sysconfdir}@SEP@g" $1 > $2