Source: sptk Version: 3.9-2 Severity: normal Tags: patch User: [email protected] Usertags: usrmerge
Dear Maintainer, The package currently fails to reproducibly build on merged-usr vs nonmerged systems. The problem is that the path of csh is looked up during build-time and embedded in shipped files. On merged-usr systems /bin is a symlink to /usr/bin and normally PATH will have /usr/bin before /bin, thus on merged-usr systems /usr/bin/csh will be found while on non-merged systems it's /bin/csh. The problem is easily fixed by passing CSH=/bin/sh to configure in debian/rules : DEB_CONFIGURE_EXTRA_FLAGS := CSH=/bin/csh Will submit a MR on salsa shortly... Regards, Andreas Henriksson

