Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 23192 - rdtool-0.6.11 does not compile due to a erraneous "require" statement in rdblockparser.rx
Summary: rdtool-0.6.11 does not compile due to a erraneous "require" statement in rdbl...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Development (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Tom Payne (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-06-20 13:35 UTC by Marco Lange
Modified: 2003-08-24 13:50 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 Marco Lange 2003-06-20 13:35:53 UTC
In the rdtool-0.6.11 distribution (rdtool-0.6.11.tar.gz) the grammar file
rd/rdblockparser.ry contains a require statement as follows:

require "rd/rdinlineparser.tab.rb"

The problem is the .rb file extension, which must be omitted from the source
file. After replacing the above line by

require "rd/rdinlineparser.tab"

and regenerating the digest file everything compiles well.

Reproducible: Always
Steps to Reproduce:
Comment 1 Tom Payne (RETIRED) gentoo-dev 2003-06-22 15:57:10 UTC
Thanks. This is weird:

ebuild rdtool-0.6.11-r1.ebuild install

works without error, but

emerge rdtool

fails. Will investigate...
Comment 2 Brandy Westcott (RETIRED) gentoo-dev 2003-08-21 22:21:01 UTC
The rdtool-0.6.11 compile does not seem to like more than one 
parallel process. Changing the rdtool-0.6.11-r1 ebuild to: 
 
src_compile() { 
	..... 
	MAKEOPTS="-j1" emake || die 
} 
 
causes rdtool to compile successfully. 
Comment 3 Tom Payne (RETIRED) gentoo-dev 2003-08-24 13:50:27 UTC
Thanks Brandy. Now in CVS.