This commit is contained in:
Thomas Nagy 2011-12-31 13:49:34 +01:00
parent 3ac3b916b5
commit 7252308f7d
2 changed files with 5 additions and 4 deletions

View File

@ -26,7 +26,7 @@ You would have to run::
[1] http://www.jython.org/
"""
import os, re, tempfile
import os, re, tempfile, shutil
from waflib.Configure import conf
from waflib import TaskGen, Task, Utils, Options, Build, Errors, Node, Logs
from waflib.TaskGen import feature, before_method, after_method
@ -347,8 +347,6 @@ def check_java_class(self, classname, with_classpath=None):
:type with_classpath: string
"""
import shutil
javatestdir = '.waf-javatest'
classpath = javatestdir

View File

@ -27,7 +27,7 @@ import tokenize
import os, sys, re, io, optparse
from waflib import Utils, Options
from waflib import Utils, Options, Logs
from hashlib import md5
from waflib import Configure
@ -71,6 +71,9 @@ def init(ctx):
sys.exit(0)
def check(ctx):
Logs.warn('Nothing to do')
# this function is called before any other for parsing the command-line
def options(opt):