Skip to content

Commit

Permalink
Install module dependencies in build/3rdparty as well.
Browse files Browse the repository at this point in the history
If configured with --enable-install-module-dependencies, install
3rdparty dependencies in build/3rdparty.

Review: https://reviews.apache.org/r/46538
  • Loading branch information
karya0 committed May 11, 2016
1 parent 6bfd859 commit bb70363
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions 3rdparty/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -259,10 +259,17 @@ ALL_LOCAL += $(ZOOKEEPER)-stamp
endif

all-local: $(ALL_LOCAL)
if INSTALL_MODULE_DEPENDENCIES
$(MAKE) $(AM_MAKEFLAGS) \
INSTALLDIR=$(abs_top_builddir)/3rdparty install-module-dependencies
endif

clean-local:
rm -r -f $(CLEAN_EXTRACTED)
rm -f *-stamp
if INSTALL_MODULE_DEPENDENCIES
rm -rf bin include lib64 lib share
endif

tests: all $(check_LTLIBRARIES)
@cd stout && $(MAKE) $(AM_MAKEFLAGS) tests
Expand Down

0 comments on commit bb70363

Please sign in to comment.