On Sun, 2015-01-11 at 19:24 +0100, Jakub Wilk wrote: > Package: elfutils > Version: 0.159-4 > > Apparently eu-make-debug-archive fell victim to overzealous > search&replace:
This was fixed upstream in elfutils 0.160 by: commit f1ec744b5747a3bd66297c9f965be6ea10cb7f86 Author: Josh Stone <[email protected]> Date: Mon Aug 25 14:40:35 2014 -0700 Prevent premature @AR@ replacement in a sed expression. The Makefile rule for make-debug-archive has a sed expression to replace @AR@ will the installed name, but this was itself getting replaced when the Makefile was configured, for a pattern like "s,ar,/path/prefix-,g". Havoc ensued in the resulting make-debug-archive. The fix matches it using a regex bracket expression, "[@]AR[@]", so sed will still match it, but it's immune to configure's replacement. Signed-off-by: Josh Stone <[email protected]> Latest release of elfutils is 0.161. -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

