Fix sed command in yatex recipe

This commit is contained in:
Yuya Unno 2015-07-29 13:07:22 +09:00
parent a60eaccf9c
commit 1aebfd1d2d

View File

@ -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")))