diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2013-06-14 12:48:20 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2013-06-15 21:32:36 +0200 |
commit | 944f3a6c6e48f1b5532fa16ab38918b9b3f9412e (patch) | |
tree | 83901ce06673b80d2174196d9189367eea75c0bd /solenv/gbuild/ExternalExecutable.mk | |
parent | 7369a8cad62ba6151ba8c16c41d0005fdf87f0ec (diff) |
gbuild: allow to use RepositoryFixes also for executables
Helps to kill package in cpputools.
And autoinstall uno executable.
Change-Id: Ib1d546371ec8d2b06381d88eff98dbc5b70da400
Diffstat (limited to 'solenv/gbuild/ExternalExecutable.mk')
-rw-r--r-- | solenv/gbuild/ExternalExecutable.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/solenv/gbuild/ExternalExecutable.mk b/solenv/gbuild/ExternalExecutable.mk index c87ea26c5a6f..f934b62c9685 100644 --- a/solenv/gbuild/ExternalExecutable.mk +++ b/solenv/gbuild/ExternalExecutable.mk @@ -121,11 +121,11 @@ endef # Set the executable as internal # # Optionally set a specific executable target to use (if the target -# returned by gb_Executable_get_target_for_build is not suitable). +# $(OUTDIR_FOR_BUILD)/bin/$(1)$(gb_Executable_EXT_for_build) is not suitable). # # gb_ExternalExecutable_set_internal executable call? define gb_ExternalExecutable_set_internal -$(call gb_ExternalExecutable__set_internal,$(1),$(if $(strip $(2)),$(2),$(call gb_Executable_get_target_for_build,$(1)))) +$(call gb_ExternalExecutable__set_internal,$(1),$(if $(strip $(2)),$(2),$(OUTDIR_FOR_BUILD)/bin/$(1)$(gb_Executable_EXT_for_build))) endef |