On Sat, Dec 01, 2018 at 06:57:08PM +0100, Andreas Henriksson wrote: > > Debdiff adding SED=/bin/sed in debian/rules attached for your > convenince.
Thanks for your patch. I already have a fix in queued up for the next release of e2fsprogs: commit b7bb80dc7033776149bb1f33c81a753fe21a2f89 Author: Theodore Ts'o <ty...@mit.edu> Date: Thu Nov 22 18:01:56 2018 -0500 mk_cmds: don't use explicit pathname for sed $AWK doesn't use an explicit pathname, and it's perfectly fine to assume that awk and sed are in the user's PATH. The problem with using an explicit pathname is that Debian currently allows merged and non-merged /usr. Avoid using an explicit pathname to prevent potential problems. Addresses-Debian-Bug: #914087 Signed-off-by: Theodore Ts'o <ty...@mit.edu> diff --git a/lib/ss/mk_cmds.sh.in b/lib/ss/mk_cmds.sh.in index 6d4873582..53282f4dd 100644 --- a/lib/ss/mk_cmds.sh.in +++ b/lib/ss/mk_cmds.sh.in @@ -4,7 +4,7 @@ DIR=@datadir@/ss AWK=@AWK@ -SED=@SED@ +SED=sed Cheers, - Ted