You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by cu...@apache.org on 2010/02/23 22:50:06 UTC

svn commit: r915534 - /hadoop/avro/trunk/lang/c++/Makefile.am

Author: cutting
Date: Tue Feb 23 21:50:05 2010
New Revision: 915534

URL: http://svn.apache.org/viewvc?rev=915534&view=rev
Log:
AVRO-430.  Fix for C++ too.

Modified:
    hadoop/avro/trunk/lang/c++/Makefile.am

Modified: hadoop/avro/trunk/lang/c++/Makefile.am
URL: http://svn.apache.org/viewvc/hadoop/avro/trunk/lang/c%2B%2B/Makefile.am?rev=915534&r1=915533&r2=915534&view=diff
==============================================================================
--- hadoop/avro/trunk/lang/c++/Makefile.am (original)
+++ hadoop/avro/trunk/lang/c++/Makefile.am Tue Feb 23 21:50:05 2010
@@ -121,6 +121,10 @@
 testgen_LDFLAGS = -static -no-install $(BOOST_LDFLAGS)
 testgen_LDADD = $(top_builddir)/libavrocpp.la $(BOOST_REGEX_LIB)
 
+# Make sure we never package up '.svn' directories
+dist-hook:
+	find $(distdir) -name '.svn' | xargs rm -rf
+
 testgen.hh : bigrecord.precompile 
 	$(PYTHON) $(top_srcdir)/scripts/gen-cppcode.py -n testgen -i $< -o $@