noetic: sophus: remove -Werror

This commit is contained in:
Ben Wolsieffer 2024-09-18 19:48:40 -04:00
parent 8224ba4a98
commit 7f44b828b4

View file

@ -130,4 +130,12 @@ rosSelf: rosSuper: with rosSelf.lib; {
} : {
buildInputs = buildInputs ++ [ self.opencl-clhpp ];
});
sophus = rosSuper.sophus.overrideAttrs ({
postPatch ? "", ...
}: {
postPatch = postPatch + ''
substituteInPlace CMakeLists.txt --replace-fail " -Werror" ""
'';
});
}