From: Willem Jan Withagen Date: Fri, 24 Feb 2017 10:20:16 +0000 (+0100) Subject: do_freebsd.sh: Remove ENODATA requirement X-Git-Tag: v12.0.1~270^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=ec077448468b27f8b0fcff3b123d0511cd608fd2;p=ceph-ci.git do_freebsd.sh: Remove ENODATA requirement - This was there because cython did not know about ENOATTR But since cython 0.25.2 tus is fixed. And we don't need to edit /usr/include/errno.h Signed-off-by: Willem Jan Withagen --- diff --git a/do_freebsd.sh b/do_freebsd.sh index c3229e79fc5..3f868513559 100755 --- a/do_freebsd.sh +++ b/do_freebsd.sh @@ -12,12 +12,6 @@ fi if [ x"$1"x = x"--deps"x ]; then sudo ./install-deps.sh fi -if ! grep -q ENODATA /usr/include/errno.h; then - echo Need ENODATA in /usr/include/errno.h for cython compilations - echo Please add it manually after ENOATTR with value 87 - echo '#define ENOATTR 87' - exit 1 -fi if [ -x /usr/bin/getopt ] && [ x"`/usr/bin/getopt -v`"x == x" --"x ]; then echo fix getopt path echo Native FreeBSD getopt is not compatible with the Linux getopt that is