From: pankrat Date: Sun, 24 Aug 2008 13:39:49 +0000 (+0000) Subject: Move jw parser option to the right X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9f112fd85871d25be08cd8d944b9bb3aebce0481;p=scons.git Move jw parser option to the right git-svn-id: http://scons.tigris.org/svn/scons/trunk@3302 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/doc/SConscript b/doc/SConscript index e33069e1..e010ebf9 100644 --- a/doc/SConscript +++ b/doc/SConscript @@ -347,7 +347,7 @@ THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT. if docs[doc].get('ps') and jadetex and jade_original: env.Command(ps, main, [ Delete("${TARGET.dir}/%s" % out), - "jw -b ps -p %s -o ${TARGET.dir} $SOURCES" % jade_original, + "jw -b ps -o ${TARGET.dir} -p %s $SOURCES" % jade_original, "mv ${TARGET.dir}/main.ps $TARGET", Delete("${TARGET.dir}/%s" % out), ]) @@ -377,7 +377,7 @@ THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT. if docs[doc].get('pdf') and pdfjadetex and jade_original: env.Command(pdf, main, [ Delete("${TARGET.dir}/%s" % out), - "jw -b pdf -p %s -o ${TARGET.dir} $SOURCES" % jade_original, + "jw -b pdf -o ${TARGET.dir} -p %s $SOURCES" % jade_original, "mv ${TARGET.dir}/main.pdf $TARGET", Delete("${TARGET.dir}/out"), ])