diff options
author | David Tardon <dtardon@redhat.com> | 2015-09-29 18:09:16 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2015-10-07 10:11:39 +0200 |
commit | cad68c6559a350aadbb1d3b2fcc8d78d1851b057 (patch) | |
tree | 3d2e4c22f9d13a12abd96eb9bfcbdeda7f6c7b96 /RepositoryExternal.mk | |
parent | 955c8f4c7b6038aa802e33074623b8eab0494d0c (diff) |
relax deps of link target on external projects
Compilation of the link target's source files does not require the
external project to be built, just unpacked, unless the project
generates some needed headers during configure/build.
Change-Id: I2c9947cf13ce86878d2649829052551fc54f3883
Diffstat (limited to 'RepositoryExternal.mk')
-rw-r--r-- | RepositoryExternal.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk index b55aa13e9d46..5a655e21d67a 100644 --- a/RepositoryExternal.mk +++ b/RepositoryExternal.mk @@ -2673,7 +2673,7 @@ endef else # !SYSTEM_POPPLER define gb_LinkTarget__use_poppler -$(call gb_LinkTarget_use_external_project,$(1),poppler) +$(call gb_LinkTarget_use_external_project,$(1),poppler,full) $(call gb_LinkTarget_set_include,$(1),\ -I$(call gb_UnpackedTarball_get_dir,poppler) \ @@ -3124,9 +3124,8 @@ $(eval $(call gb_Helper_register_packages_for_install,python,\ python3 \ )) -# depend on external project because on MACOSX the Package is disabled... define gb_LinkTarget__use_python_headers -$(call gb_LinkTarget_use_external_project,$(1),python3) +$(call gb_LinkTarget_use_external_project,$(1),python3,full) $(call gb_LinkTarget_set_include,$(1),\ -I$(call gb_UnpackedTarball_get_dir,python3) \ -I$(call gb_UnpackedTarball_get_dir,python3)/PC \ |