From 7a471005ed325c3329af5bbc55038a7f9db6f870 Mon Sep 17 00:00:00 2001 From: dos-reis Date: Sat, 19 Apr 2008 19:42:39 +0000 Subject: * driver/utils.c (openaxiom_build_rts_options): Fix thinko. --- src/ChangeLog | 4 ++++ src/driver/utils.c | 7 ++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 7b37fdad..b61f128b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2008-04-19 Gabriel Dos Reis + + * driver/utils.c (openaxiom_build_rts_options): Fix thinko. + 2008-04-19 Gabriel Dos Reis * boot/translator.boot: Cleanup. diff --git a/src/driver/utils.c b/src/driver/utils.c index c319536f..e074e106 100644 --- a/src/driver/utils.c +++ b/src/driver/utils.c @@ -144,9 +144,10 @@ openaxiom_build_rts_options(openaxiom_command* command, command->rt_argc = 3; command->rt_argv = (char **) malloc(command->rt_argc * sizeof (char*)); - command->rt_argv[0] = "--noprint"; - command->rt_argv[1] = "--noinform"; - command->rt_argv[2] = "--end-runtime-options"; + command->rt_argv[0] = "--noinform"; + command->rt_argv[1] = "--end-runtime-options"; + command->rt_argv[2] = "--noprint"; + command->rt_argv[3] = "--end-toplevel-options"; break; default: -- cgit v1.2.3