diff options
author | Eric Engestrom <[email protected]> | 2019-03-26 10:55:37 +0000 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-12-27 22:43:34 +0000 |
commit | dcba7731e6056b6cad03064f90a97cf206e68a75 (patch) | |
tree | c8f58b0cfeaeea8a1aadd37039a979822e6c6226 /bin | |
parent | ff3a2576a45e012b1cd8fbf73b9967083d6fce0e (diff) |
meson: simplify install_megadrivers.py invocation
Note: `find_program()` needs a shebang on scripts.
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'bin')
-rw-r--r-- | bin/install_megadrivers.py | 3 | ||||
-rw-r--r-- | bin/meson.build | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/bin/install_megadrivers.py b/bin/install_megadrivers.py index 470137e0c1d..0a28dd7c0c5 100644 --- a/bin/install_megadrivers.py +++ b/bin/install_megadrivers.py @@ -1,5 +1,6 @@ +#!/usr/bin/env python3 # encoding=utf-8 -# Copyright © 2017-2018 Intel Corporation +# Copyright 2017-2018 Intel Corporation # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/bin/meson.build b/bin/meson.build index ec22e2e2989..000abef7709 100644 --- a/bin/meson.build +++ b/bin/meson.build @@ -20,3 +20,4 @@ git_sha1_gen_py = files('git_sha1_gen.py') symbols_check = find_program('symbols-check.py') +install_megadrivers_py = find_program('install_megadrivers.py') |