diff options
author | midipix <writeonce@midipix.org> | 2025-04-03 02:55:38 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2025-04-03 02:55:38 +0000 |
commit | fa7ea0ecc8cd92ec13ee5368d496e3e28b53bc7c (patch) | |
tree | 4c3e014bb00fe65e1852072a6ee16cf71d5e60d2 /src/logic/slbt_exec_stoolie.c | |
parent | 5fb097090d4c0a74c9aa50273c173be9aa30ef2f (diff) | |
download | slibtool-fa7ea0ecc8cd92ec13ee5368d496e3e28b53bc7c.tar.bz2 slibtool-fa7ea0ecc8cd92ec13ee5368d496e3e28b53bc7c.tar.xz |
Diffstat (limited to 'src/logic/slbt_exec_stoolie.c')
-rw-r--r-- | src/logic/slbt_exec_stoolie.c | 31 |
1 files changed, 24 insertions, 7 deletions
diff --git a/src/logic/slbt_exec_stoolie.c b/src/logic/slbt_exec_stoolie.c index 84d8b23..d8cd9c0 100644 --- a/src/logic/slbt_exec_stoolie.c +++ b/src/logic/slbt_exec_stoolie.c @@ -88,16 +88,16 @@ static int slbt_exec_stoolie_perform_actions( char auxdir[PATH_MAX]; char slibm4[PATH_MAX]; char sltdl [PATH_MAX]; - char m4ltdl[PATH_MAX]; + char m4tag [PATH_MAX]; char ltmain[PATH_MAX]; char arlib [PATH_MAX]; bool fslibm4; - bool fsltdl; bool fltmain; + bool fsysltdl; ictx = slbt_get_stoolie_ictx(stctx); - fsltdl = (dctx->cctx->drvflags & SLBT_DRIVER_PREFER_SLTDL); + fsysltdl = !(dctx->cctx->drvflags & SLBT_DRIVER_PREFER_SLTDL); /* source files */ if (slbt_snprintf( @@ -109,7 +109,7 @@ static int slbt_exec_stoolie_perform_actions( if (slbt_snprintf( sltdl,sizeof(sltdl),"%s/%s", SLBT_PACKAGE_DATADIR, - fsltdl ? "sltdl.m4" : "sysltdl.m4") < 0) + "sltdl.m4") < 0) return SLBT_BUFFER_ERROR(dctx); if (slbt_snprintf( @@ -134,6 +134,10 @@ static int slbt_exec_stoolie_perform_actions( if (slbt_exec_stoolie_remove_file(dctx,ictx->fdm4,"sltdl.m4") < 0) return SLBT_NESTED_ERROR(dctx); + if (ictx->fdm4 >= 0) + if (slbt_exec_stoolie_remove_file(dctx,ictx->fdm4,"sysltdl.tag") < 0) + return SLBT_NESTED_ERROR(dctx); + if (slbt_exec_stoolie_remove_file(dctx,ictx->fdaux,"ltmain.sh") < 0) return SLBT_NESTED_ERROR(dctx); @@ -174,15 +178,19 @@ static int slbt_exec_stoolie_perform_actions( return SLBT_SYSTEM_ERROR(dctx,0); if (slbt_snprintf( - m4ltdl,sizeof(m4ltdl),"%s/%s", - m4dir,"sltdl.m4") < 0) + m4tag,sizeof(m4tag),"%s/%s", + m4dir,"sysltdl.tag") < 0) return SLBT_BUFFER_ERROR(dctx); if (slbt_util_copy_file(ectx,slibm4,m4dir) < 0) return SLBT_NESTED_ERROR(dctx); - if (slbt_util_copy_file(ectx,sltdl,m4ltdl) < 0) + if (slbt_util_copy_file(ectx,sltdl,m4dir) < 0) return SLBT_NESTED_ERROR(dctx); + + if (fsysltdl) + if (slbt_util_copy_file(ectx,"/dev/null",m4tag) < 0) + return SLBT_NESTED_ERROR(dctx); } if (fltmain) { @@ -213,6 +221,15 @@ static int slbt_exec_stoolie_perform_actions( "sltdl.m4", SLBT_SYMLINK_LITERAL) < 0) return SLBT_NESTED_ERROR(dctx); + + if (fsysltdl) + if (slbt_create_symlink_ex( + dctx,ectx, + ictx->fdm4, + "/dev/null", + "sysltdl.tag", + SLBT_SYMLINK_LITERAL) < 0) + return SLBT_NESTED_ERROR(dctx); } if (fltmain) { |