Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 27009ef5 authored by Adam Bickett's avatar Adam Bickett Committed by Gerrit - the friendly Code Review server
Browse files

Revert "techpack: replace type with xtype while searching for sub-dirs"



Support build environments where find -xtype is not supported.

This reverts commit 5081f16b.

Change-Id: Ibb4a9f2429bad5e0bae690f60605887f01623a16
Signed-off-by: default avatarAdam Bickett <abickett@codeaurora.org>
parent 776ec744
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
# 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)))

techpack-header-dirs := $(shell find $(srctree)/techpack -maxdepth 1 -mindepth 1 -type d -not -name ".*")