From 591b153e89c3a389c5d4bcb6a07b93c2b4d1e8b3 Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Mon, 25 Aug 2025 15:02:11 +0200 Subject: [PATCH] =?UTF-8?q?maint(linux):=20ignore=20generate=20patch=20dir?= =?UTF-8?q?ectories=20=F0=9F=8D=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit During a package build a patch directory (`.pc`) might get created. That can't and shouldn't be part of the source package. This change excludes any `.pc` directories. Cherry-pick-of: #14600 Build-bot: skip Test-bot: skip --- linux/scripts/dist.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/linux/scripts/dist.sh b/linux/scripts/dist.sh index 1b8f0dee87..26c5320381 100755 --- a/linux/scripts/dist.sh +++ b/linux/scripts/dist.sh @@ -42,6 +42,7 @@ dpkg-source \ --tar-ignore=experiments \ --tar-ignore=debian \ --tar-ignore=.github \ + --tar-ignore=.pc \ --tar-ignore=.vscode \ --tar-ignore=.devcontainer \ --tar-ignore=__pycache__ \