This commit is contained in:
Mirek Fidler 2025-04-24 11:46:58 +02:00
parent bf14d24894
commit d30311bbd1

View file

@ -57,9 +57,7 @@ String SourcePath(const String& package, const String& file) {
bool IsExternalPackage(const String& folder)
{
DDUMP(folder);
String source_masks = GetVar("SOURCE_MASKS");
DDUMP(source_masks);
for(FindFile ff(folder + "/*.*"); ff; ff.Next())
if(ff.IsFile() && PatternMatchMulti(source_masks, ff.GetName()))
return true;