Mesa (master): install_megadrivers: print the full path with driver name

Dylan Baker dbaker at kemper.freedesktop.org
Thu Oct 26 20:46:55 UTC 2017


Module: Mesa
Branch: master
Commit: 8da36268d44a15ca8b02709089a26ac5e678b139
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=8da36268d44a15ca8b02709089a26ac5e678b139

Author: Dylan Baker <dylan at pnwbakers.com>
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 <dylanx.c.baker at intel.com>
Reviewed-by: Eric Anholt <eric at anholt.net>

---

 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)
 




More information about the mesa-commit mailing list