diff options
| author | Khem Raj <raj.khem@gmail.com> | 2025-05-09 16:21:53 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-05-09 16:23:04 -0700 |
| commit | 90e2f77ce10393b57a30539107d8a2196dc10fc6 (patch) | |
| tree | 41fdee97f8e5aa2804fe0d589cf4914cd30a12c4 /meta-webserver/recipes-webadmin | |
| parent | 6b720074c46709b84436c813fa87387bb5584882 (diff) | |
| download | meta-openembedded-90e2f77ce10393b57a30539107d8a2196dc10fc6.tar.gz | |
cockpit: Fix a build race generating fail-html.c
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-webserver/recipes-webadmin')
| -rw-r--r-- | meta-webserver/recipes-webadmin/cockpit/cockpit_337.bb | 1 | ||||
| -rw-r--r-- | meta-webserver/recipes-webadmin/cockpit/files/0001-Makefile-common.am-Create-src-common-directory-befor.patch | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/meta-webserver/recipes-webadmin/cockpit/cockpit_337.bb b/meta-webserver/recipes-webadmin/cockpit/cockpit_337.bb index b456fe1951..986a924fb5 100644 --- a/meta-webserver/recipes-webadmin/cockpit/cockpit_337.bb +++ b/meta-webserver/recipes-webadmin/cockpit/cockpit_337.bb | |||
| @@ -7,6 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" | |||
| 7 | SRC_URI += " \ | 7 | SRC_URI += " \ |
| 8 | https://github.com/cockpit-project/cockpit/releases/download/${PV}/cockpit-${PV}.tar.xz \ | 8 | https://github.com/cockpit-project/cockpit/releases/download/${PV}/cockpit-${PV}.tar.xz \ |
| 9 | file://0001-Warn-not-error-if-xsltproc-is-not-found.patch \ | 9 | file://0001-Warn-not-error-if-xsltproc-is-not-found.patch \ |
| 10 | file://0001-Makefile-common.am-Create-src-common-directory-befor.patch \ | ||
| 10 | file://cockpit.pam \ | 11 | file://cockpit.pam \ |
| 11 | " | 12 | " |
| 12 | SRC_URI[sha256sum] = "df51ef5920fae69e1b435f657376aa93772c0c1720b954a3bac10ebba26bfedf" | 13 | SRC_URI[sha256sum] = "df51ef5920fae69e1b435f657376aa93772c0c1720b954a3bac10ebba26bfedf" |
diff --git a/meta-webserver/recipes-webadmin/cockpit/files/0001-Makefile-common.am-Create-src-common-directory-befor.patch b/meta-webserver/recipes-webadmin/cockpit/files/0001-Makefile-common.am-Create-src-common-directory-befor.patch new file mode 100644 index 0000000000..36cb6c09c7 --- /dev/null +++ b/meta-webserver/recipes-webadmin/cockpit/files/0001-Makefile-common.am-Create-src-common-directory-befor.patch | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | From fb3b427bcbc17257ac8c38438a82435b2bd36e38 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Fri, 9 May 2025 16:17:05 -0700 | ||
| 4 | Subject: [PATCH] Makefile-common.am: Create src/common directory before | ||
| 5 | generating fail-html.c | ||
| 6 | |||
| 7 | During parallel builds, its possible that <build>/src/common directory is | ||
| 8 | not yet created and this codepath to generate fail-html.c is executed and | ||
| 9 | it will end in build failures | ||
| 10 | |||
| 11 | Fixes | ||
| 12 | make[1]: Entering directory 'build/tmp/work/riscv64-yoe-linux/cockpit/337/build' | ||
| 13 | ../cockpit-337/tools/escape-to-c cockpit_webresponse_fail_html_text < ../cockpit-337/src/common/fail.html > src/common/fail-html.c.tmp && mv src/common/fail-html.c.tmp src/common/fail-html.c | ||
| 14 | /bin/bash: src/common/fail-html.c.tmp: No such file or directory | ||
| 15 | make[1]: *** [Makefile:6044: src/common/fail-html.c] Error 1 | ||
| 16 | |||
| 17 | Upstream-Status: Pending | ||
| 18 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 19 | --- | ||
| 20 | src/common/Makefile-common.am | 1 + | ||
| 21 | 1 file changed, 1 insertion(+) | ||
| 22 | |||
| 23 | diff --git a/src/common/Makefile-common.am b/src/common/Makefile-common.am | ||
| 24 | index ec4b30d..1d55576 100644 | ||
| 25 | --- a/src/common/Makefile-common.am | ||
| 26 | +++ b/src/common/Makefile-common.am | ||
| 27 | @@ -94,6 +94,7 @@ libcockpit_common_a_SOURCES = \ | ||
| 28 | # libcockpit-common.a static-links an HTML template to use on failures | ||
| 29 | nodist_libcockpit_common_a_SOURCES = src/common/fail-html.c | ||
| 30 | src/common/fail-html.c: src/common/fail.html | ||
| 31 | + $(MKDIR_P) $(dir $@) | ||
| 32 | $(AM_V_GEN) $(top_srcdir)/tools/escape-to-c cockpit_webresponse_fail_html_text < $< > $@.tmp && mv $@.tmp $@ | ||
| 33 | CLEANFILES += src/common/fail-html.c | ||
| 34 | EXTRA_DIST += src/common/fail.html | ||
