Takeshi Komiya
katsu****@dd*****
2003年 10月 29日 (水) 18:13:35 JST
こんにちは、小宮@神奈川工科大学です。 個人的に exerb を debian package 化しているのですが、 そのときに exerb-2.6.7/doc/Makefile に問題があることに気づきました。 問題というのは archive を展開した直後に make clean をするとエラーになる、というものです。 % tar xzf exerb-2.6.7.tar.gz % cd exerb-2.6.7/ % make -C doc/ clean make: Entering directory `/home/katsuwo/work/work/exerb-2.6.7/doc' rm ../ChangeLog.en.html ../ChangeLog.ja.html ../README.en.html ../README.ja.html class.ja.html command.en.html command.ja.html example.en.html example.ja.html i nside.ja.html recipe.en.html recipe.ja.html tutorial.en.html tutorial.ja.html rm: cannot remove `../ChangeLog.en.html': No such file or directory rm: cannot remove `../ChangeLog.ja.html': No such file or directory rm: cannot remove `../README.en.html': No such file or directory rm: cannot remove `../README.ja.html': No such file or directory rm: cannot remove `class.ja.html': No such file or directory rm: cannot remove `command.en.html': No such file or directory rm: cannot remove `command.ja.html': No such file or directory rm: cannot remove `example.en.html': No such file or directory rm: cannot remove `example.ja.html': No such file or directory rm: cannot remove `inside.ja.html': No such file or directory rm: cannot remove `recipe.en.html': No such file or directory rm: cannot remove `recipe.ja.html': No such file or directory rm: cannot remove `tutorial.en.html': No such file or directory rm: cannot remove `tutorial.ja.html': No such file or directory make: *** [clean] Error 1 make: Leaving directory `/home/katsuwo/work/work/exerb-2.6.7/doc' 些細なことですが、 rm に -f option を付けてエラーが起きないようにしませんか? 必要ないとは思いますが、一応パッチを示します。 --- exerb-2.6.7/doc/Makefile.orig 2003-03-04 12:03:14.000000000 +0900 +++ exerb-2.6.7/doc/Makefile 2003-10-29 18:06:24.000000000 +0900 @@ -23,5 +23,5 @@ clean: - rm $(DOCS) + rm -f $(DOCS) %.html : %.rd また、個人的に作成している exerb の debian package ですが、 <URL:http://www.monochrome.jp/~katsuwo/debian/> で公開しています。 もしよろしかったら使ってみてください:) # unstable 用ですが:-) --- 小宮 健<mailto:katsu****@ish*****>