Control: tags -1 patch
Control: user m...@linux.it
Control: usertags -1 usrmerge

On Tue, 13 Nov 2018 01:27:41 -0800 Kunal Mehta <lego...@member.fsf.org>
wrote:
> This is the same regression as #905187 - is there a good way we can
> prevent this from happening again?

The previous fix was not a real fix, it only rebuilt the package in a
non-merged environment. Please find attached a patch that sets SED to a
known-good value, thus making the build work for both merged and non-merged
systems.

Saludos,
Felipe Sateler
From 1b4df9e00b2093cd688f2d4d455912c8da48494e Mon Sep 17 00:00:00 2001
From: Felipe Sateler <fsate...@debian.org>
Date: Wed, 14 Nov 2018 10:36:47 -0300
Subject: [PATCH] Always use /bin/sed as sed command

Autodetection by configure script might find /usr/bin/sed in systems where
/ has been merged with /usr, which then doesn't work on non-merged systems.

Closes: #913228
---
 debian/rules | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/rules b/debian/rules
index c32856580..932c23ffd 100755
--- a/debian/rules
+++ b/debian/rules
@@ -333,7 +333,7 @@ override_dh_auto_configure-indep:
 
 override_dh_auto_configure-arch: prepared
 	for target in $(TARGETS); do \
-	  dh_auto_configure --builddirectory $${target}-build $(PARALLEL) -- $$(eval echo \$${$${target}_config}); \
+	  SED=/bin/sed dh_auto_configure --builddirectory $${target}-build $(PARALLEL) -- $$(eval echo \$${$${target}_config}); \
 	done
 
 override_dh_auto_build-indep:
-- 
2.19.1

Reply via email to