summaryrefslogtreecommitdiff
path: root/src/logic/slbt_exec_install.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-04-20 05:39:34 -0400
committermidipix <writeonce@midipix.org>2016-04-20 05:39:34 -0400
commitaf8d176b6291c45bffb3e2d2e98d6260571c99af (patch)
tree8c972a4746ac9cbfc786fa71ac08f015db1cd4fa /src/logic/slbt_exec_install.c
parent5b792c8ff99d0e01e74971e5eeb0323c441dc63b (diff)
downloadslibtool-af8d176b6291c45bffb3e2d2e98d6260571c99af.tar.bz2
slibtool-af8d176b6291c45bffb3e2d2e98d6260571c99af.tar.xz
install mode: handle .lai install arguments as gracefully as possible.
Diffstat (limited to 'src/logic/slbt_exec_install.c')
-rw-r--r--src/logic/slbt_exec_install.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/logic/slbt_exec_install.c b/src/logic/slbt_exec_install.c
index ffb689a..008c89d 100644
--- a/src/logic/slbt_exec_install.c
+++ b/src/logic/slbt_exec_install.c
@@ -244,8 +244,14 @@ static int slbt_exec_install_entry(
? false
: true;
+ dot = strrchr(entry->arg,'.');
+
+ /* .lai --> .la */
+ if (!fexe && dot && !strcmp(dot,".lai"))
+ dot[3] = 0;
+
/* .la ? */
- if (!fexe && (!(dot = strrchr(entry->arg,'.')) || strcmp(dot,".la"))) {
+ if (!fexe && (!dot || strcmp(dot,".la"))) {
*src = (char *)entry->arg;
*dst = dest ? 0 : (char *)last->arg;