Message942

Author bzimmer
Recipients
Date 2005-02-23.04:49:46
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=37674

The -D argument is being sent to jython, not the JVM.  You'll need to 
send the argument to the JVM like this:

$ java -Djava.library.path=abc -jar jython.jar
Jython 2.2a1 on java1.4.2_05 (JIT: null)
Type "copyright", "credits" or "license" for more information.
>>> from java.lang import *
>>> System.getProperty('java.library.path')
'abc'
>>>

I suggest writing a new wrapper script which allows for setting this 
variable.
History
Date User Action Args
2008-02-20 17:17:20adminlinkissue1049938 messages
2008-02-20 17:17:20admincreate