diff options
Diffstat (limited to 'src/logic')
-rw-r--r-- | src/logic/slbt_exec_link.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logic/slbt_exec_link.c b/src/logic/slbt_exec_link.c index 94f1f19..d83935c 100644 --- a/src/logic/slbt_exec_link.c +++ b/src/logic/slbt_exec_link.c @@ -1766,7 +1766,7 @@ static int slbt_exec_link_create_executable( &depsmeta, SLBT_SYSTEM_ERROR(dctx,wrapper)); - if (rename(wrapper,dctx->cctx->output)) + if (renameat(fdcwd,wrapper,fdcwd,dctx->cctx->output)) return slbt_exec_link_exit( &depsmeta, SLBT_SYSTEM_ERROR(dctx,dctx->cctx->output)); |