mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
Make '' the default arg for --extra-config-args (instead of None)
or else ./build-qemu hangs because shlex.split(None) waits for stdin https://docs.python.org/3/library/shlex.html
This commit is contained in:
committed by
Ciro Santilli,Opinions and content are my own, not my employer's,2018新疆改造中心,1989六四事件,1999法轮功 ,2019 996.ICU, 2018包子露宪,2015 710律师劫,2015巴拿马文件 邓家贵,2017低端人口,2008西藏骚乱scriptalert(1)/script
parent
d1be4b2386
commit
b43677d435
@@ -9,7 +9,13 @@ class Main(common.BuildCliFunction):
|
|||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self._add_argument('--configure')
|
self._add_argument('--configure')
|
||||||
self.add_argument('--extra-config-args')
|
self.add_argument(
|
||||||
|
'--extra-config-args',
|
||||||
|
default='',
|
||||||
|
help='''\
|
||||||
|
Extra arguments to pass to configure
|
||||||
|
'''
|
||||||
|
)
|
||||||
self._add_argument('extra_make_args')
|
self._add_argument('extra_make_args')
|
||||||
|
|
||||||
def build(self):
|
def build(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user