> These double headers look a little weird. Let us use if they cause fun
> for "git am". Might be a product of not using "git-send-email".
Am Wed, 29 Sep 2021 07:43:41 -0700 (PDT)
schrieb Michael Ebel <me...@christ-es.de>:
> From e4f8153bd3b3886b283ea19517b56f5190ca6b9a Mon Sep 17 00:00:00 2001
> From: Michael Ebel <me...@christ-es.de>
> Date: Wed, 29 Sep 2021 16:29:40 +0200
> Subject: [PATCH] meta/classes/debianize: Create debian folder if
> source does not contain one
These double headers look a little weird. Let us use if they cause fun
for "git am". Might be a product of not using "git-send-email".
> Signed-off-by: Michael Ebel <me...@christ-es.de>
> ---
> meta/classes/debianize.bbclass | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/meta/classes/debianize.bbclass
> b/meta/classes/debianize.bbclass index 4486778..338b1f5 100644
> --- a/meta/classes/debianize.bbclass
> +++ b/meta/classes/debianize.bbclass
> @@ -88,6 +88,11 @@ EOF
> }
>
> deb_debianize() {
> + # create the debian folder if the source does not contain it
The code is too obvious to ask for an explanation.
> + if [ ! -d ${S}/debian ]; then
Can be done without condition, install will not complain when already
there
> + install -v -m 755 -d ${S}/debian
no need to -v
Henning
> + fi
> +
> # create the compat-file if there is no file with that name in
> WORKDIR if [ -f ${WORKDIR}/compat ]; then
> install -v -m 644 ${WORKDIR}/compat ${S}/debian/compat