Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 2304 - openquicktime ebuild correction
Summary: openquicktime ebuild correction
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: Normal trivial (vote)
Assignee: Daniel Robbins (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-05-01 05:33 UTC by Bart Lauwers
Modified: 2002-05-01 06:14 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 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 :)