From af48d3eca38ff4116eea71b805311ce9ed4cf0ad Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 23 Mar 2024 16:46:24 +0000 Subject: slibtoolize: driver: added support for --copy, --force, and --install. --- src/logic/slbt_exec_stoolie.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/logic') diff --git a/src/logic/slbt_exec_stoolie.c b/src/logic/slbt_exec_stoolie.c index 6b2f883..99b1ca1 100644 --- a/src/logic/slbt_exec_stoolie.c +++ b/src/logic/slbt_exec_stoolie.c @@ -145,6 +145,18 @@ int slbt_exec_stoolie(const struct slbt_driver_ctx * dctx) case TAG_STLE_VERSION: ictx->cctx.drvflags |= SLBT_DRIVER_VERSION; break; + + case TAG_STLE_COPY: + ictx->cctx.drvflags |= SLBT_DRIVER_STOOLIE_COPY; + break; + + case TAG_STLE_FORCE: + ictx->cctx.drvflags |= SLBT_DRIVER_STOOLIE_FORCE; + break; + + case TAG_STLE_INSTALL: + ictx->cctx.drvflags |= SLBT_DRIVER_STOOLIE_INSTALL; + break; } if (entry->fval) { -- cgit v1.2.3