Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
verimag
synchrone
lutin
Commits
e9f29457
Commit
e9f29457
authored
Jun 03, 2015
by
Erwan Jahier
Browse files
Remove the -nologo option when calling sim2chro as not all version of
sim2chro arount supports this option (Sigh).
parent
e53071f4
Changes
2
Hide whitespace changes
Inline
Side-by-side
source/Makefile.release
View file @
e9f29457
...
...
@@ -472,4 +472,5 @@ verimag:
cd
/usr/local/tools/lurette/
$(ALL_RELEASE_NAME)
&&
\
./RUN_ME
cd
/usr/local/tools/lurette/
$(ALL_RELEASE_NAME)
/examples/
&&
\
make
test
make
test
&&
\
cd
../../
&&
rm
current
&&
ln
-s
$(ALL_RELEASE_NAME)
current
source/common/util2.ml
View file @
e9f29457
...
...
@@ -350,7 +350,7 @@ let (gnuplot_ps: string -> unit) =
let
(
sim2chro_dyn
:
unit
->
out_channel
)
=
fun
()
->
let
sim2chro
=
mygetenv
"SIM2CHRO"
in
let
oc
=
Unix
.
open_process_out
(
sim2chro
^
"
-nologo
-ecran /dev/null"
)
in
let
oc
=
Unix
.
open_process_out
(
sim2chro
^
" -ecran /dev/null"
)
in
oc
let
(
sim2chro
:
string
->
bool
)
=
...
...
@@ -359,7 +359,6 @@ let (sim2chro: string -> bool) =
let
sim2chro
=
mygetenv
"SIM2CHRO"
in
match
Util
.
my_create_process
~
wait
:
false
sim2chro
[
"-nologo"
;
"-ecran"
;
"-in"
;
file
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment