raulcd commented on code in PR #48148:
URL: https://github.com/apache/arrow/pull/48148#discussion_r3264627412
##########
dev/tasks/linux-packages/apt/build.sh:
##########
@@ -67,6 +84,13 @@ if which ccache > /dev/null 2>&1; then
debuild_options+=(--prepend-path=/usr/lib/ccache)
fi
fi
+# Use a fixed build directory name instead of mktemp's random suffix.
+# c_glib's meson generates pkgconfig files that bake the absolute
+# build-tree path into Libs.private, so a random suffix breaks
+# reproducibility across reprotest runs.
+build_dir="${build_root_dir}/package"
+run mkdir -p "${build_dir}"
+run pushd "${build_dir}"
Review Comment:
I've created a new issue to track this and have added a TODO comment on the
code pointing to the new issue:
- https://github.com/apache/arrow/issues/49987
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]