Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 9372 - mysql-3.23.52-r1 ebuild error
Summary: mysql-3.23.52-r1 ebuild error
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High critical (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-10-20 04:28 UTC by Torgeir Hansen
Modified: 2003-02-04 19:42 UTC (History)
1 user (show)

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 Torgeir Hansen 2002-10-20 04:28:03 UTC
there is a logical error on line 55 it appears;
"if [ use sparc || use sparc64 ]; then"
only problem is when we don't use sparc, it will be translated into;
"if [ || ]; then"

this will result in bash (or whatever shell i guess:) saying:
bash: [: missing `]'

the following line will not complain and it appears that it is working aswell
(since I'm using a x86 system, i tried to add -o `use x86` - and it apperaed to
be working.
"if [ `use sparc` -o `use sparc64` ]; then"

mind you, that this is written early on a sunday with no coffee yet, so - the
bug can, of course, be in my head. :)