Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 519288 - sci-misc/nco-4.4.2 - `myconfargs' should be `myeconfargs'
Summary: sci-misc/nco-4.4.2 - `myconfargs' should be `myeconfargs'
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo Science Related Packages
URL:
Whiteboard:
Keywords: PATCH
Depends on:
Blocks: myconfargs-typo
  Show dependency tree
 
Reported: 2014-08-07 05:46 UTC by Casper Ti. Vector
Modified: 2014-08-07 16:46 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Casper Ti. Vector 2014-08-07 05:46:09 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:

--- /usr/portage/sci-misc/nco/nco-4.4.2.ebuild	2014-03-19 03:31:33.000000000 +0800
+++ -	2014-08-07 13:45:12.717788172 +0800
@@ -38,7 +38,7 @@
 		myeconfargs+=( --enable-netcdf4 )
 		append-cppflags -DHAVE_NETCDF4_H
 	else
-		myconfargs+=( --disable-netcdf4 )
+		myeconfargs+=( --disable-netcdf4 )
 	fi
 	autotools-utils_src_configure
 }
Comment 1 Michał Górny archtester Gentoo Infrastructure gentoo-dev Security 2014-08-07 16:46:11 UTC
+  07 Aug 2014; Michał Górny <mgorny@gentoo.org> nco-4.4.2.ebuild:
+  Fix myconfargs typo, bug #519288.