From ee5938c46f45c0a61931e2bb3ebd32178843eaa7 Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Fri, 20 Nov 2020 21:46:27 +0100 Subject: [PATCH] db: include developer tools in scan --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 491d536..d5a54d3 100644 --- a/Makefile +++ b/Makefile @@ -42,6 +42,7 @@ prefix = $$(case $(1) in \ find = \ { \ $(2) find /Library /System /bin /dev /private /sbin /usr ! \( -path /System/Volumes/Data -prune \) $(1) 2> /dev/null | sed 's/^/macOS /' ; \ + cd /Applications/Xcode.app/Contents/Developer ; find Library Toolchains Tools usr $(1) | sed 's|^|macOS /Applications/Xcode.app/Contents/Developer/|' ; \ cd $(call prefix,iOS) ; find . $(1) | sed '1d;s/^\./iOS /' ; \ cd $(call prefix,tvOS) ; find . $(1) | sed '1d;s/^\./tvOS /' ; \ cd $(call prefix,watchOS) ; find . $(1) | sed '1d;s/^\./watchOS /' ; \