Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 431170 | Differences between
and this patch

Collapse All | Expand All

(-)a/main.c (-1 / +2 lines)
Lines 309-314 apply_cflags(pkg_t *world, void *list_head, int maxdepth, unsigned int flags) Link Here
309
	pkg_fragment_t *list;
309
	pkg_fragment_t *list;
310
	unsigned int eflags = PKG_ERRF_OK;
310
	unsigned int eflags = PKG_ERRF_OK;
311
311
312
	printf(" ");
312
	list = pkg_cflags(world, head, maxdepth, flags | PKGF_SEARCH_PRIVATE, &eflags);
313
	list = pkg_cflags(world, head, maxdepth, flags | PKGF_SEARCH_PRIVATE, &eflags);
313
	if (list == NULL)
314
	if (list == NULL)
314
		return eflags == PKG_ERRF_OK ? true : false;
315
		return eflags == PKG_ERRF_OK ? true : false;
Lines 326-331 apply_libs(pkg_t *world, void *list_head, int maxdepth, unsigned int flags) Link Here
326
	pkg_fragment_t *list;
327
	pkg_fragment_t *list;
327
	unsigned int eflags = PKG_ERRF_OK;
328
	unsigned int eflags = PKG_ERRF_OK;
328
329
330
	printf(" ");
329
	list = pkg_libs(world, head, maxdepth, flags, &eflags);
331
	list = pkg_libs(world, head, maxdepth, flags, &eflags);
330
	if (list == NULL)
332
	if (list == NULL)
331
		return eflags == PKG_ERRF_OK ? true : false;
333
		return eflags == PKG_ERRF_OK ? true : false;
332
- 

Return to bug 431170