summaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2019-10-26 02:41:08 +0200
committerBjoern Jacke <bjacke@samba.org>2019-10-31 00:43:38 +0000
commite6cd8884256e5f433b16b4132ed825054af867e5 (patch)
tree41bf0f9f378e7941facc75f0eaf054f7b135e605 /buildtools
parente781db805e53959150c8a385ac60d55f601dde71 (diff)
downloadsamba-e6cd8884256e5f433b16b4132ed825054af867e5.tar.gz
buildtools/wafsamba/samba_install.py: typo fixes
Signed-off-by: Bjoern Jacke <bjacke@samba.org> Reviewed-by: Martin Schwenke <martin@meltin.net>
Diffstat (limited to 'buildtools')
-rw-r--r--buildtools/wafsamba/samba_install.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildtools/wafsamba/samba_install.py b/buildtools/wafsamba/samba_install.py
index 07b01d6ac4b..2957e16c3da 100644
--- a/buildtools/wafsamba/samba_install.py
+++ b/buildtools/wafsamba/samba_install.py
@@ -12,7 +12,7 @@ from samba_utils import LIB_PATH, MODE_755, install_rpath, build_rpath
@after('apply_core')
@before('apply_link', 'apply_obj_vars')
def install_binary(self):
- '''install a binary, taking account of the different rpath varients'''
+ '''install a binary, taking account of the different rpath variants'''
bld = self.bld
# get the ldflags we will use for install and build
@@ -54,7 +54,7 @@ def install_binary(self):
@after('apply_core')
@before('apply_link', 'apply_obj_vars')
def install_library(self):
- '''install a library, taking account of the different rpath varients'''
+ '''install a library, taking account of the different rpath variants'''
if getattr(self, 'done_install_library', False):
return
@@ -156,7 +156,7 @@ def install_library(self):
@after('apply_implib')
@before('apply_vnum')
def apply_soname(self):
- '''install a library, taking account of the different rpath varients'''
+ '''install a library, taking account of the different rpath variants'''
if self.env.SONAME_ST and getattr(self, 'soname', ''):
self.env.append_value('LINKFLAGS', self.env.SONAME_ST % self.soname)