Skip to content

Commit

Permalink
Make "make check" work properly for Python and Java.
Browse files Browse the repository at this point in the history
Summary:
The Python and Java versions of "make check" only work if "make all" has
been run.  Our automake-fu isn't strong enough to make proper dependencies,
so this hack suggested by Nitay will force the libraries to be built
before make check is run.

Test Plan: make check


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665497 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
dreiss committed Feb 24, 2008
1 parent 24b823f commit b556465
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/java/Makefile.am
Expand Up @@ -7,3 +7,4 @@ install-exec-hook:
clean-generic:
$(ANT) clean

check-local: all
1 change: 1 addition & 0 deletions lib/py/Makefile.am
Expand Up @@ -14,3 +14,4 @@ install-exec-hook:
clean-generic:
rm -rf build

check-local: all

0 comments on commit b556465

Please sign in to comment.