repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Replace some g_assert with g_error.
[mono-project.git]
/
scripts
/
mdassembler
blob
75fb241fc7bdc1513b50bbfe25cabd7a4e573cb6
1
#!/bin/sh
2
cmd_line
=
3
4
for
option
do
5
case
"
$option
"
in
6
--ecma
|
--ecmaspec
|
--error
|
--man
|
--simple
|
--xhtml
|
--hb
)
7
format
=
`echo
$option
| sed 's/^--//'`
8
cmd_line
=
"
$cmd_line
--format=
$format
"
9
;;
10
*)
11
cmd_line
=
"
$cmd_line
$option
"
12
;;
13
esac
14
done
15
16
exec
mdoc assemble
$cmd_line