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

Bug 67673

Summary: wxGlade wrapper script doesn't pass arguments (patch)
Product: Gentoo Linux Reporter: REMOVED ACCOUNT <removed_account>
Component: New packagesAssignee: Gentoo wxWidgets project <wxwidgets>
Status: RESOLVED FIXED    
Severity: normal    
Priority: High    
Version: unspecified   
Hardware: All   
OS: All   
Whiteboard:
Package list:
Runtime testing required: ---
Attachments: wxglade-0.3.4.ebuild.patch

Description REMOVED ACCOUNT 2004-10-15 08:42:30 UTC
wxglade-0.3.4 ebuild creates /usr/bin/wxglade script that reads

#!/bin/bash
/usr/lib/python2.3/site-packages/wxglade-cvs/wxglade.py

This means that arguments passed to wxGlade are silently ignored, because they never make it to wxglade.py. It should be this instead:

#!/bin/bash
/usr/lib/python2.3/site-packages/wxglade-cvs/wxglade.py $*

Patch attached.
Comment 1 REMOVED ACCOUNT 2004-10-15 08:43:01 UTC
Created attachment 41900 [details, diff]
wxglade-0.3.4.ebuild.patch
Comment 2 Rob Cakebread (RETIRED) gentoo-dev 2004-10-15 18:14:10 UTC
Thanks Vaclav, good catch. Added to CVS.