diff options
author | midipix <writeonce@midipix.org> | 2024-02-16 08:16:16 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-02-16 08:16:16 +0000 |
commit | 145d2bceaaf622475218abf3a549d2285298fc3c (patch) | |
tree | 88246c35535beb179bd08c0d1dd64bbacb38af38 /src/internal | |
parent | 94868fcfce9afea841d74c2f3a81ea9493aaac1b (diff) | |
download | slibtool-145d2bceaaf622475218abf3a549d2285298fc3c.tar.bz2 slibtool-145d2bceaaf622475218abf3a549d2285298fc3c.tar.xz |
driver: slbt_get_lconf_var(): accept colons in tool-specific arguments.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/slibtool_lconf_impl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/slibtool_lconf_impl.c b/src/internal/slibtool_lconf_impl.c index 102a2b6..c7d2fd3 100644 --- a/src/internal/slibtool_lconf_impl.c +++ b/src/internal/slibtool_lconf_impl.c @@ -698,7 +698,7 @@ static int slbt_get_lconf_var( else if ((*mark == '.') || (*mark == '_')) (void)0; - else if (*mark == space) + else if ((*mark == ':') || (*mark == space)) (void)0; else |