diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-11-12 18:49:55 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-11-12 18:55:00 +0100 |
commit | 2fdf78109e815a64169fdab1a8175b63ef9c64d4 (patch) | |
tree | 4b6369216935e85a7c330c2c3d30751bfbb76e73 /external | |
parent | 0a2d7345f756b49440ab7845ac0a1e991f2a014e (diff) |
Pass MAKE into external/poppler's configure
...which does some checks about make and could otherwise add some unhelpful
MAKE=make into its Makefiles if it doesn't find a make (so that the following
$(MAKE) step would needlessly fail).
Change-Id: Id8d11ffbc5a09c9f7f61fb12acc2481468746404
Diffstat (limited to 'external')
-rw-r--r-- | external/poppler/ExternalProject_poppler.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/poppler/ExternalProject_poppler.mk b/external/poppler/ExternalProject_poppler.mk index 2663184c0999..5d9c56bf6097 100644 --- a/external/poppler/ExternalProject_poppler.mk +++ b/external/poppler/ExternalProject_poppler.mk @@ -18,7 +18,7 @@ $(eval $(call gb_ExternalProject_register_targets,poppler,\ $(call gb_ExternalProject_get_state_target,poppler,build) : $(call gb_ExternalProject_run,build,\ $(if $(filter TRUE,$(DISABLE_DYNLOADING)),CFLAGS="$(CFLAGS) $(gb_VISIBILITY_FLAGS) $(gb_COMPILEROPTFLAGS)" CXXFLAGS="$(CXXFLAGS) $(gb_VISIBILITY_FLAGS) $(gb_COMPILEROPTFLAGS)") \ - ./configure \ + MAKE=$(MAKE) ./configure \ --with-pic \ --enable-static \ --disable-shared \ |