Module: Mesa Branch: master Commit: 8da36268d44a15ca8b02709089a26ac5e678b139 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=8da36268d44a15ca8b02709089a26ac5e678b139
Author: Dylan Baker <[email protected]> Date: Mon Oct 16 17:25:53 2017 -0700 install_megadrivers: print the full path with driver name Instead of just the path. Signed-off-by: Dylan Baker <[email protected]> Reviewed-by: Eric Anholt <[email protected]> --- bin/install_megadrivers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install_megadrivers.py b/bin/install_megadrivers.py index a5a46201cc..a98d7dd177 100755 --- a/bin/install_megadrivers.py +++ b/bin/install_megadrivers.py @@ -46,7 +46,7 @@ def main(): driver = os.path.join(to, each) if os.path.exists(driver): os.unlink(driver) - print('installing {} to {}'.format(args.megadriver, to)) + print('installing {} to {}'.format(args.megadriver, driver)) os.link(master, driver) os.unlink(master) _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
