Remove 'column' from modules target
The standard target modules stopped working when restrictions in
soong were introduced to which binaries are allowed to be used during
builds.
Listing a very large amount of modules in columns does not make it
more readable and harder to work with in tools so just drop it.
Bug: 129800175
Test: make modules
(cherry picked from commit 7005d4f4cc
)
Change-Id: I317f6eb4ba5ea633264939a9a58f716bdb36596e
This commit is contained in:
parent
50d01d6aa3
commit
ca1dbcc809
|
@ -615,8 +615,6 @@ JETIFIER := prebuilts/sdk/tools/jetifier/jetifier-standalone/bin/jetifier-standa
|
|||
|
||||
EXTRACT_KERNEL := build/make/tools/extract_kernel.py
|
||||
|
||||
COLUMN:= column
|
||||
|
||||
USE_OPENJDK9 := true
|
||||
|
||||
ifeq ($(EXPERIMENTAL_USE_OPENJDK9),)
|
||||
|
|
|
@ -1668,7 +1668,7 @@ check-elf-files:
|
|||
modules:
|
||||
@echo "Available sub-modules:"
|
||||
@echo "$(call module-names-for-tag-list,$(ALL_MODULE_TAGS))" | \
|
||||
tr -s ' ' '\n' | sort -u | $(COLUMN)
|
||||
tr -s ' ' '\n' | sort -u
|
||||
|
||||
.PHONY: dump-files
|
||||
dump-files:
|
||||
|
|
Loading…
Reference in New Issue