diff options
author | Joe Buck <jbbuck@gmail.com> | 2013-09-16 18:07:56 -0700 |
---|---|---|
committer | Joe Buck <jbbuck@gmail.com> | 2013-09-16 22:08:41 -0700 |
commit | 17bc3fddc3cc4179b7573a64686e9928b66844e8 (patch) | |
tree | bc815b13f198f822991bc6a2e6a55eb90a242a9d | |
parent | 446fec7465e46b21da4080ea0e50ac84a4b3bf96 (diff) | |
download | ceph-17bc3fddc3cc4179b7573a64686e9928b66844e8.tar.gz |
Add ANT_HOME to README examplewip-buck-centos-misc
On CentOS, ANT_HOME needs to be specified
(and it doesn't hurt to do so on all platforms),
so I'm adding it to the README example.
Signed-off-by: Joe Buck <jbbuck@gmail.com>
-rw-r--r-- | src/java/README | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/README b/src/java/README index 0ffede3486f..69235708a82 100644 --- a/src/java/README +++ b/src/java/README @@ -32,9 +32,9 @@ to that location from wherever the junit jar is installed. Ant is used to run the unit test (apt-get install ant). For example: $ cd src/ - $ ./vstart -d -n --localhost + $ ./vstart.sh -d -n --localhost $ cd java - $ CEPHFS_CONF=../ceph.conf CLASSPATH=/usr/share/java/junit4.jar ant test + $ ANT_HOME=/usr/share/ant/ CEPHFS_CONF=../ceph.conf CLASSPATH=/usr/share/java/junit4.jar ant test 1. The tests depend on the compiled wrappers. If the wrappers are installed as part of a package (e.g. Debian package) then this should 'just work'. Ant will |