fa29398e98
Change-Id: Idb678ac2669914575d3ddb813d35212df26e3d17 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146297 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
11 lines
377 B
Text
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);
|
|
|