summaryrefslogtreecommitdiff
path: root/.travis
diff options
context:
space:
mode:
authorIlya Maximets <i.maximets@ovn.org>2019-09-26 12:03:09 +0300
committerIlya Maximets <i.maximets@ovn.org>2019-09-26 16:08:22 +0300
commit15a5dddde50ac7ef2fe38254db2b26fa2b84b1ce (patch)
tree8bc9cef8bfa9832369871143bc74381e2b936e3e /.travis
parentd0d1a76eac10dff8b2eb10bc5ff35b65eacd7234 (diff)
downloadopenvswitch-15a5dddde50ac7ef2fe38254db2b26fa2b84b1ce.tar.gz
travis: Drop -MD related workaround for sparse.
The issue was fixed in upstream sparse by the following commit: d90c0838c101 ("cgcc: fix wrong processing of -MD & -MMD") This patch is required to fix our travis build. Signed-off-by: Ilya Maximets <i.maximets@ovn.org> Acked-by: Ian Stokes <ian.stokes@intel.com>
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/linux-prepare.sh5
1 files changed, 0 insertions, 5 deletions
diff --git a/.travis/linux-prepare.sh b/.travis/linux-prepare.sh
index 65348c9f9..70fd98f71 100755
--- a/.travis/linux-prepare.sh
+++ b/.travis/linux-prepare.sh
@@ -9,11 +9,6 @@ set -ev
# linking against it fails.
git clone git://git.kernel.org/pub/scm/devel/sparse/sparse.git
cd sparse
-# Commit bb1bf748580d ("cgcc: gendeps for -MM, -MD & -MMD too") makes
-# sparse ignore almost all source files, because 'make' uses '-MD' to
-# generate dependencies as a side effect within compilation commands.
-git revert bb1bf748580d --no-commit
-git diff HEAD
make -j4 HAVE_LLVM= install
cd ..