[openssl-commits] Still Failing: openssl/openssl#2818 (master - bb26842)
Travis CI
builds at travis-ci.org
Fri Mar 11 17:41:15 UTC 2016
Build Update for openssl/openssl
-------------------------------------
Build: #2818
Status: Still Failing
Duration: 29 minutes and 28 seconds
Commit: bb26842 (master)
Author: Richard Levitte
Message: Some sed implementations are not greedy enough, use perl instead
The issue is demonstrated as follows:
On Linux:
$ echo ': foo.h /usr/include/stddef.h bar.h' | sed -e 's/ \/\(\\.\|[^ ]\)*//g'
: foo.h bar.h
On MacOS X:
$ echo ': foo.h /usr/include/stddef.h bar.h' | sed -e 's/ \/\(\\.\|[^ ]\)*//g'
: foo.husr/include/stddef.h bar.h
Perl is more consistent:
On Linux:
$ echo ': foo.h /usr/include/stddef.h bar.h' | perl -pe 's/ \/(\\.|[^ ])*//g;'
: foo.h bar.h
On MacOS X:
$ echo ': foo.h /usr/include/stddef.h bar.h' | perl -pe 's/ \/(\\.|[^ ])*//g;'
: foo.h bar.h
Reviewed-by: Andy Polyakov <appro at openssl.org>
View the changeset: https://github.com/openssl/openssl/compare/178da24425dd...bb26842d1c8f
View the full build log and details: https://travis-ci.org/openssl/openssl/builds/115363074
--
You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mta.openssl.org/pipermail/openssl-commits/attachments/20160311/db34633f/attachment.html>
More information about the openssl-commits
mailing list