View | Details | Raw Unified | Return to bug 192606 | Differences between
and this patch

Collapse All | Expand All

(-)libpkg/pkg_elf.c (-4 / +7 lines)
Lines 113-122 Link Here
113
	case EPKG_END:		/* A system library */
113
	case EPKG_END:		/* A system library */
114
		return (EPKG_OK);
114
		return (EPKG_OK);
115
	default:
115
	default:
116
		/* Ignore link resolution errors if we're analysing a
116
		/* Report link resolution errors in shared library. */
117
		   shared library. */
117
		if (is_shlib) {
118
		if (is_shlib)
118
			pkg_get(pkg, PKG_NAME, &pkgname, PKG_VERSION, &pkgversion);
119
			return (EPKG_OK);
119
			warnx("(%s-%s) %s - shared library %s not found",
120
			      pkgname, pkgversion, fpath, name);
121
 			return (EPKG_OK);
122
		}
120
123
121
		while (pkg_files(pkg, &file) == EPKG_OK) {
124
		while (pkg_files(pkg, &file) == EPKG_OK) {
122
			filepath = pkg_file_path(file);
125
			filepath = pkg_file_path(file);

Return to bug 192606