Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit de51ee35 authored by Soumil Shah's avatar Soumil Shah Committed by Raghavendra Rao Ananta
Browse files

kernel_headers: Explicitly run headers_install under 'sh'



To avoid build failures in the newer Android build systems,
run the headers_install script explicitly under 'sh'.

Change-Id: If30d2bda653c6be443345a2594e9993d9780db21
Signed-off-by: default avatarSoumil Shah <soumshah@codeaurora.org>
Signed-off-by: default avatarRaghavendra Rao Ananta <rananta@codeaurora.org>
parent ddcb1352
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -343,7 +343,7 @@ def run_headers_install(verbose, gen_dir, headers_install, prefix, h):
  if verbose:
    print('run_headers_install: cmd is %s' % cmd)

  result = subprocess.call(cmd)
  result = subprocess.call(['sh', headers_install, h, out_h])

  if result != 0:
    print('error: run_headers_install: cmd %s failed %d' % (cmd, result))