From: Roger Meier Date: Wed, 24 Oct 2012 21:38:21 +0000 (+0000) Subject: THRIFT-1735 do nothing when building with MINGW X-Git-Tag: 0.9.1~253 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=f168e0ad46d2c162223f7fcf38bbcea626134e06;p=common%2Fthrift.git THRIFT-1735 do nothing when building with MINGW git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1401897 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/tutorial/Makefile.am b/tutorial/Makefile.am index d82a0567..aadc60e2 100755 --- a/tutorial/Makefile.am +++ b/tutorial/Makefile.am @@ -19,6 +19,10 @@ SUBDIRS = +if MINGW +# do nothing, just build the compiler +else + if WITH_CPP SUBDIRS += cpp endif @@ -54,3 +58,5 @@ endif # all-local: $(top_builddir)/compiler/cpp/thrift --gen html -r $(top_srcdir)/tutorial/tutorial.thrift + +endif