From e68a3e26877b0aeb1059e9f1352dde7263c0b122 Mon Sep 17 00:00:00 2001
From: Lucas De Marchi <lucas.demarchi@intel.com>
Date: Thu, 29 Jun 2017 13:58:35 -0700
Subject: [PATCH] build: rename linstall to localinstall

---
 wscript | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/wscript b/wscript
index d0bbac1c18..c07f44f41d 100644
--- a/wscript
+++ b/wscript
@@ -414,7 +414,7 @@ for program_group in ('all', 'bin', 'tools', 'examples', 'tests', 'benchmarks'):
 
 class LocalInstallContext(Build.InstallContext):
     """runs install using BLD/install as destdir, where BLD is the build variant directory"""
-    cmd = 'linstall'
+    cmd = 'localinstall'
 
     def __init__(self, **kw):
         super(LocalInstallContext, self).__init__(**kw)
@@ -428,7 +428,7 @@ class LocalInstallContext(Build.InstallContext):
         return r
 
 class RsyncContext(LocalInstallContext):
-    """runs linstall and then rsyncs BLD/install with the target system"""
+    """runs localinstall and then rsyncs BLD/install with the target system"""
     cmd = 'rsync'
 
     def __init__(self, **kw):
-- 
GitLab