| Bug#: 2125 | Product: Gentoo Linux | Version: 1.1a | Platform: x86 |
| OS/Version: Linux | Status: RESOLVED | Severity: normal | Priority: P4 |
| Resolution: FIXED | Assigned To: rphillips@gentoo.org | Reported By: pebenito@gentoo.org | |
| Component: Ebuilds | |||
| URL: | |||
| Summary: error in media-sound/easytag-0.18.ebuild src_compile() | |||
| Keywords: | |||
| Status Whiteboard: | |||
| Opened: 2002-04-26 07:55 0000 | |||
| Description: | Opened: 2002-04-26 07:55 0000 |
there are errors in the easytag ebuild, in src_compile(). while assigning
myconf based on USE, there are spaces before and after the '=', so the script
throws nonfatal errors:
--- easytag-0.18.ebuild Wed Apr 17 03:24:59 2002
+++ /home/pebenito/temp/easytag-0.18.ebuild Fri Apr 26 07:40:12 2002
@@ -17,9 +17,9 @@
src_compile() {
local myconf
if [ "use oggvorbis" ] ; then
- myconf = "--enable-ogg"
+ myconf="--enable-ogg"
else
- myconf = "--disable-ogg"
+ myconf="--disable-ogg"
fi
./configure --host=${CHOST} \
Thank you.. Fixed and committed.