office-gobmx/external/epm/ppc64el.patch.0
Andras Timar fa29398e98 Fix 'Architecture' string on ppc64le platform, Debian uses 'ppc64el'
Change-Id: Idb678ac2669914575d3ddb813d35212df26e3d17
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146297
Tested-by: Jenkins
Reviewed-by: Andras Timar <andras.timar@collabora.com>
2023-01-28 19:19:37 +00:00

11 lines
377 B
Text

--- deb.c.orig 2022-08-01 14:50:38.593375838 +0200
+++ deb.c 2022-08-01 14:58:08.000000000 +0200
@@ -163,6 +163,8 @@
#endif
else if (!strcmp(platform->machine, "ppc"))
fputs("Architecture: powerpc\n", fp);
+ else if (!strcmp(platform->machine, "ppc64le"))
+ fputs("Architecture: ppc64el\n", fp);
else
fprintf(fp, "Architecture: %s\n", platform->machine);