From 836f7ba9cccc3481b616198adf9d53c9754da1dd Mon Sep 17 00:00:00 2001 From: Bruce Levy Date: Tue, 19 Nov 2019 11:50:46 -0800 Subject: [PATCH] techpack: Replace xtype with type while searching for sub-dirs Some build environments do not support -xtype. Therefore use -type instead. Change-Id: I459bdd9e16dc31ea0b91d5f0cb86d4dabb1e3352 Signed-off-by: Bruce Levy --- techpack/Kbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/techpack/Kbuild b/techpack/Kbuild index 49ca44b5e3bc..037f394ff675 100644 --- a/techpack/Kbuild +++ b/techpack/Kbuild @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only TECHPACK?=y -techpack-dirs := $(shell find $(srctree)/techpack -maxdepth 1 -mindepth 1 -xtype d -not -name ".*") +techpack-dirs := $(shell find $(srctree)/techpack -maxdepth 1 -mindepth 1 -type d -not -name ".*") obj-${TECHPACK} += stub/ $(addsuffix /,$(subst $(srctree)/techpack/,,$(techpack-dirs)))