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

Collapse All | Expand All

(-)/lib/rcscripts/awk/gendepends.awk (-6 / +6 lines)
Lines 404-415 Link Here
404
}
404
}
405
405
406
END {
406
END {
407
	# Add the 'net' service if it do not exist ...
408
	if (!check_service("net")) {
409
		RC_NUMBER++
410
		DEPTREE[RC_NUMBER,NAME] = "net"
411
	}
412
	
413
	# Calculate all the provides and parallels ...
407
	# Calculate all the provides and parallels ...
414
	for (x = 1;x <= RC_NUMBER;x++) {
408
	for (x = 1;x <= RC_NUMBER;x++) {
415
409
Lines 420-425 Link Here
420
			add_parallel(DEPTREE[x,NAME], DEPTREE[x,PARALLEL])
414
			add_parallel(DEPTREE[x,NAME], DEPTREE[x,PARALLEL])
421
	}
415
	}
422
416
417
	# Add the 'net' service if it do not exist ...
418
	if (!check_service("net")) {
419
		RC_NUMBER++
420
		DEPTREE[RC_NUMBER,NAME] = "net"
421
	}
422
	
423
	# Now do NEED, USE, BEFORE and AFTER
423
	# Now do NEED, USE, BEFORE and AFTER
424
	for (x = 1;x <= RC_NUMBER;x++) {
424
	for (x = 1;x <= RC_NUMBER;x++) {
425
	
425
	

Return to bug 70226