From f3e7bb09f083de850269a6d0982ca4d839f4d1ba Mon Sep 17 00:00:00 2001 From: midipix Date: Wed, 21 Feb 2024 05:50:30 +0000 Subject: slbt_util_import_archive(): simplify interface. --- src/logic/linkcmd/slbt_linkcmd_archive.c | 2 +- src/util/slbt_archive_import.c | 14 ++++++++------ 2 files changed, 9 insertions(+), 7 deletions(-) (limited to 'src') diff --git a/src/logic/linkcmd/slbt_linkcmd_archive.c b/src/logic/linkcmd/slbt_linkcmd_archive.c index f7ddc5c..051a563 100644 --- a/src/logic/linkcmd/slbt_linkcmd_archive.c +++ b/src/logic/linkcmd/slbt_linkcmd_archive.c @@ -165,7 +165,7 @@ slbt_hidden int slbt_exec_link_create_archive( /* input objects associated with .la archives */ for (parg=ectx->cargv; *parg; parg++) if (slbt_adjust_wrapper_argument(*parg,true)) - if (slbt_util_import_archive(dctx,ectx,output,*parg)) + if (slbt_util_import_archive(ectx,output,*parg)) return SLBT_NESTED_ERROR(dctx); return 0; diff --git a/src/util/slbt_archive_import.c b/src/util/slbt_archive_import.c index 5657fcc..d2d72c5 100644 --- a/src/util/slbt_archive_import.c +++ b/src/util/slbt_archive_import.c @@ -11,15 +11,14 @@ /* legacy fallback, no longer in use */ extern int slbt_util_import_archive_mri( - const struct slbt_driver_ctx * dctx, - struct slbt_exec_ctx * ectx, + const struct slbt_exec_ctx * ectx, char * dstarchive, char * srcarchive); /* use slibtool's in-memory archive merging facility */ static int slbt_util_import_archive_impl( - const struct slbt_driver_ctx * dctx, - struct slbt_exec_ctx * ectx, + const struct slbt_driver_ctx * dctx, + const struct slbt_exec_ctx * ectx, char * dstarchive, char * srcarchive) { @@ -52,11 +51,14 @@ static int slbt_util_import_archive_impl( int slbt_util_import_archive( - const struct slbt_driver_ctx * dctx, - struct slbt_exec_ctx * ectx, + const struct slbt_exec_ctx * ectx, char * dstarchive, char * srcarchive) { + const struct slbt_driver_ctx * dctx; + + dctx = (slbt_get_exec_ictx(ectx))->dctx; + if (slbt_symlink_is_a_placeholder( slbt_driver_fdcwd(dctx), srcarchive)) -- cgit v1.2.3