From: Dylan Baker Date: Tue, 17 Oct 2017 00:25:53 +0000 (-0700) Subject: install_megadrivers: print the full path with driver name X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8da36268d44a15ca8b02709089a26ac5e678b139;p=mesa.git install_megadrivers: print the full path with driver name Instead of just the path. Signed-off-by: Dylan Baker Reviewed-by: Eric Anholt --- diff --git a/bin/install_megadrivers.py b/bin/install_megadrivers.py index a5a46201ccb..a98d7dd177b 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)