From 1aebfd1d2d33af3d4b64a43fb7c7e88411857550 Mon Sep 17 00:00:00 2001 From: Yuya Unno Date: Wed, 29 Jul 2015 13:07:22 +0900 Subject: [PATCH] Fix sed command in yatex recipe --- recipes/yatex.rcp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes/yatex.rcp b/recipes/yatex.rcp index 86e83ce3..cf5e62b0 100644 --- a/recipes/yatex.rcp +++ b/recipes/yatex.rcp @@ -5,6 +5,6 @@ :url "http://www.yatex.org/hgrepos/yatex" ;;; this fix the trouble on .loaddefs.el ;;; yatexmth.el contains inappropriate autoload magic comment - :build (("sed -i 's/ from yatex.el//' yatexmth.el")) - :build/berkeley-unix (("sed -i '' 's/ from yatex.el//' yatexmth.el")) - :build/darwin (("LANG=C LC_ALL=C") ("sed -i '' 's/ from yatex.el//' yatexmth.el"))) + :build (("sed" "-i" "s/ from yatex.el//" "yatexmth.el")) + :build/berkeley-unix (("sed" "-i" "" "s/ from yatex.el//" "yatexmth.el")) + :build/darwin (("env" "LANG=C" "LC_ALL=C" "sed" "-i" "" "s/ from yatex.el//" "yatexmth.el")))