1 Reduce references to source pathnames down to the respective basenames so
2 that builds are reproducible between workspaces.
3 The patch is needed to avoid embedding path information from the build area
4 in the compiled binares (in particular in error messages).
6 --- rsync-3.2.7/t_stub.c.orig
7 +++ rsync-3.2.7/t_stub.c
17 void _exit_cleanup(int code, const char *file, int line)
19 fprintf(stderr, "exit(%d): %s(%d)\n",
21 + code, basename((char *)file), line);
25 --- rsync-3.2.7/log.c.orig
35 --- rsync-3.2.7/cleanup.c.orig
36 +++ rsync-3.2.7/cleanup.c