diff options
author | midipix <writeonce@midipix.org> | 2018-05-09 00:28:55 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-05-09 00:28:55 -0400 |
commit | c61b5b501561b48b2d9c1037e3dd950f64cf10b7 (patch) | |
tree | 6d7cb71d0bdf1477c240cb01127278a4f2981451 /src | |
parent | f5983e8071d8b87b6f14c64f3f8564e934f49d7b (diff) | |
download | slibtool-c61b5b501561b48b2d9c1037e3dd950f64cf10b7.tar.bz2 slibtool-c61b5b501561b48b2d9c1037e3dd950f64cf10b7.tar.xz |
driver: -shrext support: only use the extension portion of the extension.
Diffstat (limited to 'src')
-rw-r--r-- | src/driver/slbt_driver_ctx.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index 94e7e9c..9031323 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -644,6 +644,7 @@ static void slbt_init_flavor_settings( { const struct slbt_host_params * host; const struct slbt_flavor_settings * settings; + const char * dot; host = ahost ? ahost : &cctx->host; @@ -670,7 +671,8 @@ static void slbt_init_flavor_settings( memcpy(psettings,settings,sizeof(*settings)); if (cctx->shrext) - psettings->dsosuffix = cctx->shrext; + psettings->dsosuffix = (dot = strrchr(cctx->shrext,'.')) + ? dot : cctx->shrext; } static int slbt_init_ldrpath( |