diff options
author | Brandon Philips <bphilips@suse.de> | 2009-06-22 11:28:47 -0700 |
---|---|---|
committer | Brandon Philips <bphilips@suse.de> | 2009-06-22 11:44:27 -0700 |
commit | 29fb85e529a598d29c012ed44bb5501e0c54037a (patch) | |
tree | 5ab62e538d238149209c6fa2f470f815fa2e874d | |
parent | b4636a4e9e9ea69e0000a2f3301cec7f446328a6 (diff) | |
download | attr-29fb85e529a598d29c012ed44bb5501e0c54037a.tar.gz |
test/run: fix lt- prefix from libtool wrappers
On some platforms libtool prefixes the in-tree binaries under .libs with
"lt-". This causes the tests to break. This patch removes the lt-
prefix from program error output.
A discussion on the issue is here:
http://lists.gnu.org/archive/html/libtool/2009-05/msg00042.html
-rwxr-xr-x | test/run | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -308,6 +308,8 @@ sub exec_test($$) { my $result = []; while (<IN>) { #print "< $_"; + # remove libtool 'lt-' prefixes on prog name output + s#^lt-##g; if ($needs_shell) { s#^/bin/sh: line \d+: ##; } |