kou commented on code in PR #48148:
URL: https://github.com/apache/arrow/pull/48148#discussion_r3262346538
##########
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 want to keep using random build directory path because it's one of
important reproducible build checks. We can work on this as a follow-up task.
I'll take a look at Meson.
--
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]