From: Frank Ch. Eigler Date: Mon, 22 Nov 2010 16:59:09 +0000 (-0500) Subject: work around rhel6 module signing nits in this builder script too X-Git-Tag: release-1.4~70^2~11 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=a16069b7787cac732d05d4356b1f5278ba350880;p=systemtap.git work around rhel6 module signing nits in this builder script too --- diff --git a/scripts/kprobes_test/gen_code.py b/scripts/kprobes_test/gen_code.py index b5c2630eb..d5e580855 100755 --- a/scripts/kprobes_test/gen_code.py +++ b/scripts/kprobes_test/gen_code.py @@ -68,7 +68,7 @@ def gen_module(): # Try to build the module - add "V=1" at the end for more verbosity os.system('rm -f ./kprobe_module.ko') (sysname, nodename, release, version, machine) = os.uname() - cmd = ("make -C \"/lib/modules/%s/build\" M=\"%s\" modules >build.log 2>&1" + cmd = ("make -C \"/lib/modules/%s/build\" M=\"%s\" modules CONFIG_MODULE_SIG=n >build.log 2>&1" % (release, os.getcwd())) rc = run_make_cmd(cmd) if os.WEXITSTATUS(rc) != 0: