fakeroot 1.35-1 hangs on Odroid-XU4 when trying to run any command via fakeroot. The issue seems to be caused by thismake_clickable_callback(MAGIC_URL_FULL, ' ', 'https://salsa.debian.org/clint/fakeroot/-/commit/f10644341c330f8fc48ba78ca32208c7d5f5b1ae', '', ' class="postlink"')
It switches from calling close() in a loop to using close_range(). The problem is that close_range() was introduced in Linux 5.9 and Odroid-XU4 only has 4.14.180 (linux-odroid-xu3 package).
fakeroot 1.33 works fine and 1.35 works too if I add 'ac_cv_func_close_range=no' to the configure parameters.
I am not sure what would be the best solution for this issue.
[*] Disabling close_range() via ac_cv_func_close_range=no, however other Arm platforms with 5.9+ kernels might benefit form using close_range() as it was introduced for a reason.
[*] Creating separate fakeroot package for pre-5.9 systems
[*] Adding some kind of runtime decision into fakeroot for selecting close() or close_range() based solution