Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 571808 - app-shells/rc-1.7.4: `USE=libedit' should lead to `--with-edit=editline', no longer `--with-edit=edit'
Summary: app-shells/rc-1.7.4: `USE=libedit' should lead to `--with-edit=editline', no ...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo's Team for Core System packages
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-01-14 07:32 UTC by Casper Ti. Vector
Modified: 2016-01-15 14:10 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 2016-01-14 07:32:53 UTC
As the title, the configure options were updated in v1.7.4.  With current ebuild, `USE=libedit' finally results in the following error:

> checking for el_ring_bell in -leditline... no
> configure: error: editline library not found

Patch follows:

--- rc-1.7.4.ebuild	2016-01-14 15:25:59.199865183 +0800
+++ rc-1.7.4.ebuild	2016-01-14 15:28:49.780794189 +0800
@@ -20,7 +20,7 @@
 src_configure() {
 	local myconf="--with-history"
 	use readline && myconf="--with-edit=readline"
-	use libedit && myconf="--with-edit=editline"
+	use libedit && myconf="--with-edit=edit"
 
 	econf \
 		--disable-dependency-tracking \