From: Jonathan Rajotte Date: Tue, 31 Oct 2017 19:35:27 +0000 (-0400) Subject: Fix: wrong option for directory manipulation of modprobe X-Git-Url: http://git.efficios.com/?p=deliverable%2Flttng-ivc.git;a=commitdiff_plain;h=f0acf3f3aa539dd002ac6cc05596ab9fb7ac3c55 Fix: wrong option for directory manipulation of modprobe Signed-off-by: Jonathan Rajotte --- 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