diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2009-12-20 15:34:09 -0500 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2009-12-20 15:34:09 -0500 |
commit | 182221914a187147ae7057d60c74e626224f99e0 (patch) | |
tree | c1a8cab12fdbdcc0f63564645b5a5f64d5e22f74 | |
parent | 48390b53f76b1497b5ce1408f3fb83c6581f9ecf (diff) | |
download | systemtap-steved-182221914a187147ae7057d60c74e626224f99e0.tar.gz systemtap-steved-182221914a187147ae7057d60c74e626224f99e0.tar.xz systemtap-steved-182221914a187147ae7057d60c74e626224f99e0.zip |
RHBZ543529: Make implicit -BCONFIG_MODULE_SIG=n
* buildrun.cxx (compile_pass): Disable module signing goo.
-rw-r--r-- | buildrun.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/buildrun.cxx b/buildrun.cxx index 5939fcae..48f27a3a 100644 --- a/buildrun.cxx +++ b/buildrun.cxx @@ -123,6 +123,9 @@ compile_pass (systemtap_session& s) // "autoconf" options go here + // RHBZ 543529: early rhel6 kernels' module-signing kbuild logic breaks out-of-tree modules + o << "CONFIG_MODULE_SIG := n" << endl; + string module_cflags = "EXTRA_CFLAGS"; o << module_cflags << " :=" << endl; |