We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5f6cb6c + 619d8a8 commit 1a84435Copy full SHA for 1a84435
src/extensions/caf.in
@@ -180,8 +180,8 @@ substitute_lib () {
180
case "${1##*.}" in
181
a|lib)
182
for suff in so dylib dll ; do
183
- if [[ -f "${1%%.*}.${suff}" ]] ; then
184
- echo "${1%%.*}.${suff}"
+ if [[ -f "${1%.*}.${suff}" ]] ; then
+ echo "${1%.*}.${suff}"
185
return
186
fi
187
done
@@ -191,8 +191,8 @@ substitute_lib () {
191
;;
192
so|dylib|dll)
193
for suff in a lib ; do
194
195
196
197
198
0 commit comments