diff options
author | midipix <writeonce@midipix.org> | 2016-03-07 09:14:07 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-03-08 14:21:09 -0500 |
commit | b83b64c040e7e858c53b4e3214751ef5fba68897 (patch) | |
tree | 6140d0291dd3b23f156c3ae18456d2af9819c139 /src | |
parent | 116dbb9f65f5fe7d30801b00ef8b81710e2041a4 (diff) | |
download | slibtool-b83b64c040e7e858c53b4e3214751ef5fba68897.tar.bz2 slibtool-b83b64c040e7e858c53b4e3214751ef5fba68897.tar.xz |
driver: added context initialization for --output.
Diffstat (limited to 'src')
-rw-r--r-- | src/driver/slbt_driver_ctx.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index f3e0f68..d7e8c14 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -197,6 +197,10 @@ int slbt_get_driver_ctx( case TAG_VERBOSE: cctx.drvflags |= SLBT_DRIVER_VERBOSE; break; + + case TAG_OUTPUT: + cctx.output = entry->arg; + break; } } else nunits++; |