diff options
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makeconfig b/Makeconfig index 3d666ffbbc..9c7df17ffd 100644 --- a/Makeconfig +++ b/Makeconfig @@ -83,6 +83,14 @@ export sysdep_dir := $(sysdep_dir) # Get the values defined by options to `configure'. include $(common-objpfx)config.make +# We have a special subdir for each binary format. +# For now, only ELF is fully supported. +ifeq ($(elf),yes) +binfmt-subdir = elf +else +binfmt-subdir = +endif + # Complete path to sysdep dirs. full-config-sysdirs := $(filter /%, $(config-sysdirs)) \ $(addprefix $(..), $(filter-out /%, $(config-sysdirs))) |