Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 67673 - wxGlade wrapper script doesn't pass arguments (patch)
Summary: wxGlade wrapper script doesn't pass arguments (patch)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: Gentoo wxWidgets project
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-10-15 08:42 UTC by REMOVED ACCOUNT
Modified: 2004-10-15 18:14 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
wxglade-0.3.4.ebuild.patch (wxglade-0.3.4.ebuild.patch,510 bytes, patch)
2004-10-15 08:43 UTC, REMOVED ACCOUNT
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
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.