diff options
author | midipix <writeonce@midipix.org> | 2016-03-06 13:55:30 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-03-08 14:21:07 -0500 |
commit | 173b545076f33b04bdac929c9579fc49b58e1cb2 (patch) | |
tree | ada72a6d405e78495f6a3396ad9a8f4ab43a3ee7 /src | |
parent | 53f4ecfce0579e4e7893dc4ef94f5e50f5db2f4f (diff) | |
download | slibtool-173b545076f33b04bdac929c9579fc49b58e1cb2.tar.bz2 slibtool-173b545076f33b04bdac929c9579fc49b58e1cb2.tar.xz |
driver: added context initialization for --config.
Diffstat (limited to 'src')
-rw-r--r-- | src/driver/slbt_driver_ctx.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index 8d586cd..f75e2b4 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -162,6 +162,11 @@ int slbt_get_driver_ctx( else if (!strcmp("CXX",entry->arg)) cctx.tag = SLBT_TAG_CXX; break; + + case TAG_CONFIG: + cctx.drvflags |= SLBT_DRIVER_CONFIG; + break; + } } else nunits++; |