diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-12-31 01:07:38 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-12-31 01:10:41 +0200 |
commit | 960dd22f2b2753d2f066af3c4caa09665208e89c (patch) | |
tree | e6df6afbb0df17c72afac0a94b8c762c94e12f3e | |
parent | fca6f2eba2119ee90fc4276390315e2832478b42 (diff) |
gb_Executable_get_runtime_dependencies should be empty when cross-compiling
Change-Id: I3d8a454a6c3e2ccf5661742d26c85224bb4773bd
-rw-r--r-- | solenv/gbuild/TargetLocations.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/solenv/gbuild/TargetLocations.mk b/solenv/gbuild/TargetLocations.mk index fe68e0c98e18..428af8640364 100644 --- a/solenv/gbuild/TargetLocations.mk +++ b/solenv/gbuild/TargetLocations.mk @@ -349,9 +349,14 @@ endef # ExternalExecutable. # # gb_Executable_get_runtime_dependencies executable +ifeq ($(CROSS_COMPILING),YES) +define gb_Executable_get_runtime_dependencies +endef +else define gb_Executable_get_runtime_dependencies $(call gb_Executable_get_runtime_target,$(1)) endef +endif define gb_Executable__get_command $(if $(filter NONE,$(gb_Executable_VALIDGROUPS)),,$(call gb_Output_error,executable group NONE does not exist!)) |