fixed target directory for man pages in build.xml
git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@7859 5e8d7ff9-d8ef-0310-90f0-a4852d11357a
This commit is contained in:
parent
71115c522c
commit
f547562189
|
@ -840,7 +840,7 @@ GENERATES A DISTRIBUTION
|
|||
<copy todir="${dist.current.dir}/doc/scala/examples">
|
||||
<fileset dir="${docs.dir}/examples"/>
|
||||
</copy>
|
||||
<copy todir="${dist.current.dir}/man">
|
||||
<copy todir="${dist.current.dir}/man/man1">
|
||||
<fileset dir="${tooldocs.dir}" includes="**/*.1"/>
|
||||
</copy>
|
||||
<copy todir="${dist.current.dir}/doc/scala/tools">
|
||||
|
|
|
@ -53,9 +53,15 @@ object sbaz extends Command {
|
|||
CmdOption("d", Argument("dir")),
|
||||
"Operate on dir as the local managed directory."),
|
||||
Definition(
|
||||
CmdOption("n"),
|
||||
CmdOption("n") & "| " & CmdOptionLong("dryrun"),
|
||||
"Do not actually do anything. Only print out what " +
|
||||
"tool would normally do with the following arguments."))),
|
||||
"tool would normally do with the following arguments."),
|
||||
Definition(
|
||||
CmdOption("v") & "| " & CmdOptionLong("verbose"),
|
||||
"Output messages about what the " & MBold(command) & " tool is doing"),
|
||||
Definition(
|
||||
CmdOption("version"),
|
||||
"Display the version information"))),
|
||||
|
||||
Section("Available Commands",
|
||||
DefinitionList(
|
||||
|
|
Loading…
Reference in New Issue