summaryrefslogtreecommitdiff
path: root/rakelib
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-05-10 10:04:31 +0200
committerEugen Wissner <belka@caraus.de>2026-05-10 11:02:48 +0200
commit67fdf3d233e59096a5f4fb16bf50956f970feb82 (patch)
tree6d52f5ee6e953441bd8be4da20f8ccea2e5cd890 /rakelib
parent92e88cfcb2b6b8258f68945a0be8846cffa72c6a (diff)
downloadelna-67fdf3d233e59096a5f4fb16bf50956f970feb82.tar.gz
Describe the comment syntax
Diffstat (limited to 'rakelib')
-rw-r--r--rakelib/doc.rake5
1 files changed, 3 insertions, 2 deletions
diff --git a/rakelib/doc.rake b/rakelib/doc.rake
index 54f5d35..7838871 100644
--- a/rakelib/doc.rake
+++ b/rakelib/doc.rake
@@ -19,8 +19,9 @@ rule '.bbl' => '.bcf' do |t|
end
namespace :doc do
- task :tex do
- sh 'pdflatex', '-output-directory', '../build/doc', 'report', chdir: 'doc'
+ task tex: 'build/doc' do |t|
+ sh 'pdflatex', '-output-directory', "../#{t.prerequisites.first}", 'report',
+ chdir: 'doc'
end
end