3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 13:28:47 +00:00

Merge branch 'unstable' of https://git01.codeplex.com/z3 into unstable

This commit is contained in:
Leonardo de Moura 2012-12-07 06:08:25 -08:00
commit 684f573c3c

View file

@ -1120,7 +1120,7 @@ class JavaExampleComponent(ExampleComponent):
out.write('_ex_%s: %s' % (self.name, pkg)) out.write('_ex_%s: %s' % (self.name, pkg))
deps = '' deps = ''
for jfile in get_java_files(self.ex_dir): for jfile in get_java_files(self.ex_dir):
out.write(os.path.join(self.to_ex_dir, jfile)) out.write(' %s' % os.path.join(self.to_ex_dir, jfile))
if IS_WINDOWS: if IS_WINDOWS:
deps = deps.replace('/', '\\') deps = deps.replace('/', '\\')
out.write('%s\n' % deps) out.write('%s\n' % deps)