diff options
author | Danesh Dadachanji <[email protected]> | 2012-05-25 10:34:24 -0400 |
---|---|---|
committer | Danesh Dadachanji <[email protected]> | 2012-05-25 10:34:24 -0400 |
commit | cfc204f1f531f9c867534ea2eca5eca216c99c04 (patch) | |
tree | 10a3a9eac8213eef98d57594f6773c99cc0c06ff | |
parent | 7832c725c27ceb0e80a2d16525082225f0a3abca (diff) |
Fix whitelisting to use src dir instead of build dir.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.am | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2012-05-24 Danesh Dadachanji <[email protected]> + + Fix use of src dir instead of build dir when whitelisting. + * Makefile.am (REPRODUCERS_CLASS_WHITELIST): Use abs_top_srcdir + instead of abs_top_builddir. + 2012-05-23 Martin Olsson <[email protected]> * plugin/icedteanp/IcedTeaPluginUtils.cc: diff --git a/Makefile.am b/Makefile.am index dcc0166..a77e860 100644 --- a/Makefile.am +++ b/Makefile.am @@ -32,7 +32,7 @@ PUBLIC_KEYSTORE_PASS=changeit JUNIT_RUNNER_JAR=$(abs_top_builddir)/junit-runner.jar UNIT_CLASS_NAMES = $(abs_top_builddir)/unit_class_names REPRODUCERS_CLASS_NAMES = $(abs_top_builddir)/reproducers_class_names -REPRODUCERS_CLASS_WHITELIST = $(abs_top_builddir)/netx-dist-tests-whitelist +REPRODUCERS_CLASS_WHITELIST = $(abs_top_srcdir)/netx-dist-tests-whitelist EMMA_JAVA_ARGS=-Xmx2G META_MANIFEST = META-INF/MANIFEST.MF |