THRIFT-1735 do nothing when building with MINGW
authorRoger Meier <roger@apache.org>
Wed, 24 Oct 2012 21:38:21 +0000 (21:38 +0000)
committerRoger Meier <roger@apache.org>
Wed, 24 Oct 2012 21:38:21 +0000 (21:38 +0000)
git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1401897 13f79535-47bb-0310-9956-ffa450edef68

tutorial/Makefile.am

index d82a056..aadc60e 100755 (executable)
 
 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