Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 519292

Summary: dev-util/difffilter - `myconfargs' should be `myeconfargs'
Product: Gentoo Linux Reporter: Casper Ti. Vector <CasperVector>
Component: [OLD] DevelopmentAssignee: Nathan Phillip Brink (binki) (RETIRED) <binki>
Status: RESOLVED FIXED    
Severity: normal Keywords: PATCH
Priority: Normal    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---
Bug Depends on:    
Bug Blocks: 518106    

Description Casper Ti. Vector 2014-08-07 05:51:29 UTC
(Originally reported in bug #518106; now reported as separate bugs after consulting devs on #gentoo at freenode.)

As the title says.  Eclasses only provided the `myeconfargs' interface, not `myconfargs'.  Affected ebuild(s) do not seem to use `myconfargs' side by side with `myeconfargs' on purpose, so this is probably a typo.

Following is the patch (same for 0.3.1 and 0.3.3):

--- /usr/portage/dev-util/difffilter/difffilter-0.3.1.ebuild	2011-10-16 07:24:48.000000000 +0800
+++ -	2014-08-07 13:50:07.130064194 +0800
@@ -22,7 +22,7 @@
 	${RDEPEND}"
 
 src_configure() {
-	local myconfargs=(
+	local myeconfargs=(
 		$(use_enable doc)
 	)
Comment 1 Michał Górny archtester Gentoo Infrastructure gentoo-dev Security 2014-08-07 16:45:48 UTC
+  07 Aug 2014; Michał Górny <mgorny@gentoo.org> difffilter-0.3.1.ebuild,
+  difffilter-0.3.3.ebuild:
+  Fix myconfargs typo, bug #519292.