Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 426950 - media-gfx/blender-2.63a[doc] sandbox error
Summary: media-gfx/blender-2.63a[doc] sandbox error
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Diego Elio Pettenò (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-07-17 08:55 UTC by Weihua Zhou
Modified: 2012-07-17 10:55 UTC (History)
1 user (show)

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 Weihua Zhou 2012-07-17 08:55:01 UTC
As title. When I emerge blender 2.63a, there will always be a sandbox error. The reason is that in the ebuild file '-noaudio' but not '--noaudio' should be used.

Reproducible: Always

Steps to Reproduce:
1.emerge =media-gfx/blender-2.63a-r2
2.
3.
Comment 1 Weihua Zhou 2012-07-17 08:57:36 UTC
It's trivial to fix this bug, just change line 256 of the ebuild file from:


"${D}"/usr/bin/blender --background --python doc/python_api/sphinx_doc_gen.py --noaudio || die "blender failed."

to:


"${D}"/usr/bin/blender --background --python doc/python_api/sphinx_doc_gen.py -noaudio || die "blender failed."


The option '--noaudio' is not a valid option for blender, it should be '-noaudio'
Comment 2 Diego Elio Pettenò (RETIRED) gentoo-dev 2012-07-17 10:55:06 UTC
Thanks for reporting, fixed now.