java demos: correct jaropts parameter example to an array as it is then used as such in javaw.py

This commit is contained in:
fedepell 2018-04-04 11:15:18 +02:00 committed by ita1024
parent f03040c960
commit 6363147a5e
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ def build(bld):
compat = '1.6', # java compatibility version number
sourcepath = ['src', 'sup'],
classpath = ['.', '..'],
#jaropts = '-C default/src/ .', # can be used to give files
#jaropts = ['-C', 'default/src/', '.'], # can be used to give files
basedir = 'src', # folder containing the classes and other files to package (must match outdir)
destfile = 'foo.jar', # do not put the destfile in the folder of the java classes!
use = 'NNN',