From f168e0ad46d2c162223f7fcf38bbcea626134e06 Mon Sep 17 00:00:00 2001 From: Roger Meier Date: Wed, 24 Oct 2012 21:38:21 +0000 Subject: [PATCH] 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 --- tutorial/Makefile.am | 6 ++++++ 1 file changed, 6 insertions(+) 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 -- 2.17.1