for the argument of "-dlopen", as mentioned in the error message.
+2006-08-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+ * ltmain.in (execute mode): Also search the directory above `$objdir'
+ for the argument of "-dlopen", as mentioned in the error message.
+
2006-08-03 Ralf Menzel <menzel@ls6.cs.uni-dortmund.de>
* libtool.m4 (AC_LIBTOOL_POSTDEP_PREDEP): Previous patch
if test -f "$dir/$objdir/$dlname"; then
dir="$dir/$objdir"
else
- $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
- exit $EXIT_FAILURE
+ if test ! -f "$dir/$dlname"; then
+ $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
+ exit $EXIT_FAILURE
+ fi
fi
;;