Author: thiru Date: Mon Oct 17 06:58:53 2011 New Revision: 1185024 URL: http://svn.apache.org/viewvc?rev=1185024&view=rev Log: AVRO-932. C++ build.sh should have an option to install the built software
Modified: avro/trunk/CHANGES.txt avro/trunk/lang/c++/build.sh Modified: avro/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/avro/trunk/CHANGES.txt?rev=1185024&r1=1185023&r2=1185024&view=diff ============================================================================== --- avro/trunk/CHANGES.txt (original) +++ avro/trunk/CHANGES.txt Mon Oct 17 06:58:53 2011 @@ -137,6 +137,8 @@ Avro 1.6.0 (unreleased) AVRO-925. CMake/C++ Unable to build debug version of libavrocpp. (Nebojsa Sabovic via thiru) + AVRO-932. C++ build.sh should have an option to install the built software. (thiru) + BUG FIXES AVRO-824. Java: Fix usage message of BinaryFragmentToJsonTool. Modified: avro/trunk/lang/c++/build.sh URL: http://svn.apache.org/viewvc/avro/trunk/lang/c%2B%2B/build.sh?rev=1185024&r1=1185023&r2=1185024&view=diff ============================================================================== --- avro/trunk/lang/c++/build.sh (original) +++ avro/trunk/lang/c++/build.sh Mon Oct 17 06:58:53 2011 @@ -96,6 +96,10 @@ case "$target" in (cd build && make clean) ;; + install) + (cd build && make install) + ;; + *) usage esac