[1/2] isar-exclude-docs: remove only files in postinst

Message ID 20220923145332.8410-1-henning.schild@siemens.com
State Accepted, archived
Headers show
Series [1/2] isar-exclude-docs: remove only files in postinst | expand

Commit Message

Henning Schild Sept. 23, 2022, 2:53 p.m. UTC
From: "Roberto A. Foglietta" <roberto.foglietta@gmail.com>

That aligns us with the dpkg.conf.d snippet which in fact leaves empty
directories in place.

Signed-off-by: Roberto A. Foglietta <roberto.foglietta@gmail.com>
Signed-off-by: Henning Schild <henning.schild@siemens.com>
---
 meta/recipes-support/isar-exclude-docs/files/postinst           | 2 +-
 .../{isar-exclude-docs_0.2.bb => isar-exclude-docs_0.2.1.bb}    | 0
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/isar-exclude-docs/{isar-exclude-docs_0.2.bb => isar-exclude-docs_0.2.1.bb} (100%)

Comments

Anton Mikanovich Oct. 6, 2022, 9:37 a.m. UTC | #1
23.09.2022 17:53, Henning Schild wrote:
> From: "Roberto A. Foglietta" <roberto.foglietta@gmail.com>
>
> That aligns us with the dpkg.conf.d snippet which in fact leaves empty
> directories in place.
>
> Signed-off-by: Roberto A. Foglietta <roberto.foglietta@gmail.com>
> Signed-off-by: Henning Schild <henning.schild@siemens.com>

Patchset was applied to next, thanks.

Patch

diff --git a/meta/recipes-support/isar-exclude-docs/files/postinst b/meta/recipes-support/isar-exclude-docs/files/postinst
index d34c04ea47f0..581cdc1339e8 100644
--- a/meta/recipes-support/isar-exclude-docs/files/postinst
+++ b/meta/recipes-support/isar-exclude-docs/files/postinst
@@ -3,5 +3,5 @@ 
 # time and do not need to be "the first" package
 # what we delete needs to be in sync with the dpkg configuration we ship
 
-rm -rf /usr/share/man/*
+find /usr/share/man/ -type f -exec rm -rf {} \;
 find /usr/share/doc/ -type f ! -name "copyright" ! -name "changelog.*" -exec rm -rf {} \;
diff --git a/meta/recipes-support/isar-exclude-docs/isar-exclude-docs_0.2.bb b/meta/recipes-support/isar-exclude-docs/isar-exclude-docs_0.2.1.bb
similarity index 100%
rename from meta/recipes-support/isar-exclude-docs/isar-exclude-docs_0.2.bb
rename to meta/recipes-support/isar-exclude-docs/isar-exclude-docs_0.2.1.bb