From b7bb80dc7033776149bb1f33c81a753fe21a2f89 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Thu, 22 Nov 2018 18:01:56 -0500 Subject: [PATCH] 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 --- lib/ss/mk_cmds.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ss/mk_cmds.sh.in b/lib/ss/mk_cmds.sh.in index 6d48735..53282f4 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 for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ -- 1.8.3.1