From 666296cf8f36712072a93ee91ff998a5a53f1f27 Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 19 Mar 2016 15:02:58 -0400 Subject: driver: slbt_split_argv(): fix handling of options which take an argument. --- src/driver/slbt_driver_ctx.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index e4d2eda..98457ba 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -211,15 +211,15 @@ static int slbt_split_argv( *cargv++ = argv[++i]; else if (!(strncmp("-target=",&argv[i][1],strlen("-target=")))) - *targv++ = argv[i++]; + *targv++ = argv[i]; else if (!(strcmp("-target",&argv[i][1]))) { *targv++ = argv[i++]; - *targv++ = argv[i++]; + *targv++ = argv[i]; } else if (!(strcmp("rpath",&argv[i][1]))) { *targv++ = argv[i++]; - *targv++ = argv[i++]; + *targv++ = argv[i]; } else { for (option=options; option->long_name; option++) if (!(strcmp(option->long_name,&argv[i][1]))) -- cgit v1.2.3