http://bugzilla.novell.com/show_bug.cgi?id=501645
User [email protected] added comment http://bugzilla.novell.com/show_bug.cgi?id=501645#c7 Andrew Jorgensen <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |REOPENED CC| |[email protected] Info Provider|[email protected] | --- Comment #7 from Andrew Jorgensen <[email protected]> 2009-05-07 13:52:01 MDT --- I've reproduced and found the cause of this bug. The mono-addon package has a wrapper script instead of the real binary mono. It goes like this: #!/bin/sh export LD_LIBRARY_PATH="/opt/novell/mono/lib64:$LD_LIBRARY_PATH" exec /opt/novell/mono/bin/mono.bin $@ This is used to make sure the correct libgdiplus is loaded, etc. It is incorrect in one simple way: it's missing "s around the $...@. It should be corrected like so: #!/bin/sh export LD_LIBRARY_PATH="/opt/novell/mono/lib64:$LD_LIBRARY_PATH" exec /opt/novell/mono/bin/mono.bin "$@" With this change your example works correctly. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
