the directory above `$objdir' for the argument of "-dlopen", as
mentioned in the error message.
+2006-08-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+ * libltdl/config/ltmain.m4sh (func_mode_execute): 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>
* libltdl/m4/libtool.m4 (_LT_SYS_HIDDEN_LIBDEPS): Fix issues
if test -f "$dir/$objdir/$dlname"; then
dir="$dir/$objdir"
else
- func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'"
+ if test ! -f "$dir/$dlname"; then
+ func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'"
+ fi
fi
;;