Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 2304

Summary: openquicktime ebuild correction
Product: Gentoo Linux Reporter: Bart Lauwers <blauwers>
Component: New packagesAssignee: Daniel Robbins (RETIRED) <drobbins>
Status: RESOLVED FIXED    
Severity: trivial    
Priority: Normal    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Bart Lauwers 2002-05-01 05:33:56 UTC
The openquicktime ebuild has an error on line 19, it reads:
--enable-debug=no \        # Disable debug - enabled by default

The comment breaks the behaviour of the \ at the end of the line since it's no
longer at the end of the line thus the statement fails.

The correct fix would be to remove all after the '\':
pulsar portage # diff -Naur0 media-libs/openquicktime/openquicktime-1.0.ebuild*
--- media-libs/openquicktime/openquicktime-1.0.ebuild   Wed May  1 14:20:24 2002
+++ media-libs/openquicktime/openquicktime-1.0.ebuild.ORG       Wed May  1
14:20:10 2002
@@ -19 +19 @@
-               --enable-debug=no \
+               --enable-debug=no \        # Disable debug - enabled by default
pulsar portage #

Thnx!
Comment 1 Seemant Kulleen (RETIRED) gentoo-dev 2002-05-01 06:14:04 UTC
nice bug catch :)