diff options
author | midipix <writeonce@midipix.org> | 2024-02-20 17:29:18 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-02-20 17:29:18 +0000 |
commit | 33a569a279a1c0acbf06fe6622866bd79f111685 (patch) | |
tree | 0fafd5353e258d17b127bbd468076ee0150cc609 /src/logic/linkcmd | |
parent | d577a3308c18cb3b8d5fc46fc5fcf8a8fb8ad1a5 (diff) | |
download | slibtool-33a569a279a1c0acbf06fe6622866bd79f111685.tar.bz2 slibtool-33a569a279a1c0acbf06fe6622866bd79f111685.tar.xz |
utility api's: _output_ namespace: simplified the execution context interfaces.
Diffstat (limited to 'src/logic/linkcmd')
-rw-r--r-- | src/logic/linkcmd/slbt_linkcmd_archive.c | 2 | ||||
-rw-r--r-- | src/logic/linkcmd/slbt_linkcmd_dsolib.c | 2 | ||||
-rw-r--r-- | src/logic/linkcmd/slbt_linkcmd_executable.c | 2 | ||||
-rw-r--r-- | src/logic/linkcmd/slbt_linkcmd_implib.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/logic/linkcmd/slbt_linkcmd_archive.c b/src/logic/linkcmd/slbt_linkcmd_archive.c index 13abb9f..f7ddc5c 100644 --- a/src/logic/linkcmd/slbt_linkcmd_archive.c +++ b/src/logic/linkcmd/slbt_linkcmd_archive.c @@ -139,7 +139,7 @@ slbt_hidden int slbt_exec_link_create_archive( /* step output */ if (!(dctx->cctx->drvflags & SLBT_DRIVER_SILENT)) - if (slbt_output_link(dctx,ectx)) + if (slbt_output_link(ectx)) return SLBT_NESTED_ERROR(dctx); /* remove old archive as needed */ diff --git a/src/logic/linkcmd/slbt_linkcmd_dsolib.c b/src/logic/linkcmd/slbt_linkcmd_dsolib.c index ac36f06..38ecbd3 100644 --- a/src/logic/linkcmd/slbt_linkcmd_dsolib.c +++ b/src/logic/linkcmd/slbt_linkcmd_dsolib.c @@ -263,7 +263,7 @@ slbt_hidden int slbt_exec_link_create_library( /* step output */ if (!(dctx->cctx->drvflags & SLBT_DRIVER_SILENT)) - if (slbt_output_link(dctx,ectx)) + if (slbt_output_link(ectx)) return slbt_linkcmd_exit( &depsmeta, SLBT_NESTED_ERROR(dctx)); diff --git a/src/logic/linkcmd/slbt_linkcmd_executable.c b/src/logic/linkcmd/slbt_linkcmd_executable.c index fb77acf..bb23701 100644 --- a/src/logic/linkcmd/slbt_linkcmd_executable.c +++ b/src/logic/linkcmd/slbt_linkcmd_executable.c @@ -228,7 +228,7 @@ slbt_hidden int slbt_exec_link_create_executable( /* step output */ if (!(dctx->cctx->drvflags & SLBT_DRIVER_SILENT)) - if (slbt_output_link(dctx,ectx)) + if (slbt_output_link(ectx)) return slbt_linkcmd_exit( &depsmeta, SLBT_NESTED_ERROR(dctx)); diff --git a/src/logic/linkcmd/slbt_linkcmd_implib.c b/src/logic/linkcmd/slbt_linkcmd_implib.c index 810ff10..a9467a3 100644 --- a/src/logic/linkcmd/slbt_linkcmd_implib.c +++ b/src/logic/linkcmd/slbt_linkcmd_implib.c @@ -140,7 +140,7 @@ slbt_hidden int slbt_exec_link_create_import_library( /* step output */ if (!(dctx->cctx->drvflags & SLBT_DRIVER_SILENT)) - if (slbt_output_link(dctx,ectx)) + if (slbt_output_link(ectx)) return SLBT_NESTED_ERROR(dctx); /* dlltool/mdso spawn */ |