Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 16946 - configure borks while emerging w3m-0.4
Summary: configure borks while emerging w3m-0.4
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High normal
Assignee: Aron Griffis (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-03-06 02:20 UTC by Robert Gill
Modified: 2003-03-08 00:52 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 Robert Gill 2003-03-06 02:20:50 UTC
When emerging w3m-0.4 it's possible for the echo commands to become out of sync
with the configure script when the gpm USE flag is disabled.  The following
patch provides a fix.

--- /usr/portage/net-www/w3m/w3m-0.4.ebuild	2003-03-05 09:51:16.000000000 -0800
+++ w3m-0.4.ebuild	2003-03-05 23:18:51.000000000 -0800
@@ -77,7 +77,7 @@
 		# Do you want color ESC sequence for Kterm/pxvt
 		echo y
 		# Use mouse (requires xterm/kterm/gpm/sysmouse) 
-		use gpm &>/dev/null && echo y
+		use gpm &>/dev/null && echo y || echo n
 		# Use popup menu
 		echo y
 		# Use cookie 

Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1 Aron Griffis (RETIRED) gentoo-dev 2003-03-07 22:15:54 UTC
Thanks, it's fixed in cvs now.  Did you get the "configure out of sync; ebuild needs an update" message?  I put it in there to catch exactly this kind of thing... :-|
Comment 2 Robert Gill 2003-03-08 00:52:51 UTC
Yep, the "configure out of sync" message worked.