diff options
| -rw-r--r-- | meta/recipes-devtools/rsync/files/determism.patch | 28 | ||||
| -rw-r--r-- | meta/recipes-devtools/rsync/rsync_3.2.3.bb | 1 |
2 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-devtools/rsync/files/determism.patch b/meta/recipes-devtools/rsync/files/determism.patch new file mode 100644 index 0000000000..53a4ca7505 --- /dev/null +++ b/meta/recipes-devtools/rsync/files/determism.patch | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | The Makefile calls awk on a "*.c" glob. The results of this glob are sorted | ||
| 2 | but the order depends on the locale settings, particularly whether | ||
| 3 | "util.c" and "util2.c" sort before or after each other. In en_US.UTF-8 | ||
| 4 | they sort one way, in C, they sort the other. The sorting order changes | ||
| 5 | the output binaries. The behaviour also changes dependning on whether | ||
| 6 | SHELL (/bin/sh) is dash or bash. | ||
| 7 | |||
| 8 | Specify a C locale setting to be deterministic. | ||
| 9 | |||
| 10 | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> | ||
| 11 | Upstream-Status: Pending | ||
| 12 | |||
| 13 | Index: rsync-3.2.3/Makefile.in | ||
| 14 | =================================================================== | ||
| 15 | --- rsync-3.2.3.orig/Makefile.in | ||
| 16 | +++ rsync-3.2.3/Makefile.in | ||
| 17 | @@ -26,6 +26,11 @@ MKDIR_P=@MKDIR_P@ | ||
| 18 | VPATH=$(srcdir) | ||
| 19 | SHELL=/bin/sh | ||
| 20 | |||
| 21 | +# We use globbing in commands, need to be deterministic | ||
| 22 | +unexport LC_ALL | ||
| 23 | +LC_COLLATE=C | ||
| 24 | +export LC_COLLATE | ||
| 25 | + | ||
| 26 | .SUFFIXES: | ||
| 27 | .SUFFIXES: .c .o | ||
| 28 | |||
diff --git a/meta/recipes-devtools/rsync/rsync_3.2.3.bb b/meta/recipes-devtools/rsync/rsync_3.2.3.bb index 375efa0dea..08778ec908 100644 --- a/meta/recipes-devtools/rsync/rsync_3.2.3.bb +++ b/meta/recipes-devtools/rsync/rsync_3.2.3.bb | |||
| @@ -12,6 +12,7 @@ DEPENDS = "popt" | |||
| 12 | SRC_URI = "https://download.samba.org/pub/${BPN}/src/${BP}.tar.gz \ | 12 | SRC_URI = "https://download.samba.org/pub/${BPN}/src/${BP}.tar.gz \ |
| 13 | file://rsyncd.conf \ | 13 | file://rsyncd.conf \ |
| 14 | file://makefile-no-rebuild.patch \ | 14 | file://makefile-no-rebuild.patch \ |
| 15 | file://determism.patch \ | ||
| 15 | " | 16 | " |
| 16 | 17 | ||
| 17 | SRC_URI[sha256sum] = "becc3c504ceea499f4167a260040ccf4d9f2ef9499ad5683c179a697146ce50e" | 18 | SRC_URI[sha256sum] = "becc3c504ceea499f4167a260040ccf4d9f2ef9499ad5683c179a697146ce50e" |
