diff options
| author | Ross Biro <[email protected]> | 2006-09-16 12:15:39 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2006-09-16 12:54:31 -0700 |
| commit | 8f5cbd7e4810df382029ecaaa98535452da5d15e (patch) | |
| tree | 15cca8524c677332ef30ecb0f8b858f56f27fbdf /scripts | |
| parent | b64074e46a9c2a7d5c66eff066a7c0b58377a143 (diff) | |
[PATCH] Add a missing space that prevents building modules that require host programs
Signed-off-by: Ross Biro <[email protected]>
Acked-by: Sam Ravnborg <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/Makefile.host | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.host b/scripts/Makefile.host index 18ecd4d5df7f..060f4c563a5c 100644 --- a/scripts/Makefile.host +++ b/scripts/Makefile.host @@ -30,7 +30,7 @@ # libkconfig.so as the executable conf. # Note: Shared libraries consisting of C++ files are not supported -__hostprogs := $(sort $(hostprogs-y)$(hostprogs-m)) +__hostprogs := $(sort $(hostprogs-y) $(hostprogs-m)) # hostprogs-y := tools/build may have been specified. Retreive directory host-objdirs := $(foreach f,$(__hostprogs), $(if $(dir $(f)),$(dir $(f)))) |