From f0acf3f3aa539dd002ac6cc05596ab9fb7ac3c55 Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Tue, 31 Oct 2017 15:35:27 -0400 Subject: [PATCH] Fix: wrong option for directory manipulation of modprobe Signed-off-by: Jonathan Rajotte --- lttng_ivc/utils/project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lttng_ivc/utils/project.py b/lttng_ivc/utils/project.py index f508c31..399b926 100644 --- a/lttng_ivc/utils/project.py +++ b/lttng_ivc/utils/project.py @@ -282,7 +282,7 @@ class Lttng_modules(Project): def __init__(self, label, git_path, sha1, tmpdir): super(Lttng_modules, self).__init__(label=label, git_path=git_path, sha1=sha1, tmpdir=tmpdir) - self.add_special_env_variable("MODPROBE_OPTIONS","-b {}".format(self.installation_path)) + self.add_special_env_variable("MODPROBE_OPTIONS","-d {}".format(self.installation_path)) def bootstrap(self): pass -- 2.34.1