Commit 8f5cbd7e4810df382029ecaaa98535452da5d15e

Authored by Ross Biro
Committed by Linus Torvalds
1 parent b64074e46a

[PATCH] Add a missing space that prevents building modules that require host programs

Signed-off-by: Ross Biro <rossb@google.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

scripts/Makefile.host
... ... @@ -30,7 +30,7 @@
30 30 # libkconfig.so as the executable conf.
31 31 # Note: Shared libraries consisting of C++ files are not supported
32 32  
33   -__hostprogs := $(sort $(hostprogs-y)$(hostprogs-m))
  33 +__hostprogs := $(sort $(hostprogs-y) $(hostprogs-m))
34 34  
35 35 # hostprogs-y := tools/build may have been specified. Retreive directory
36 36 host-objdirs := $(foreach f,$(__hostprogs), $(if $(dir $(f)),$(dir $(f))))