Package: scrcpy Version: 1.23-1 During rebuilds of debian-testing, scrcpy failed to build.
Debugging this, it turns out that this is due to the fact that the environment already had BUILD_DIR set (to "build"). However, debian/rules expects that it is unset (indirectly): It expects that server/build_without_gradle puts the scrcpy-server into build_manual which it only does if BUILD_DIR is unset or set to build_manual. Fix: in line 41 of debian/rules, add: BUILD_DIR=build_manual to the already present environment overrides. Cheers, Sven