wafsamba: Drop unused, broken install_dir()
authorMartin Schwenke <martin@meltin.net>
Tue, 11 Sep 2018 04:35:38 +0000 (14:35 +1000)
committerAlexander Bokovoy <ab@samba.org>
Tue, 11 Sep 2018 08:00:05 +0000 (10:00 +0200)
This is broken because it doesn't respect $DESTDIR.

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Alexander Bokovoy <ab@samba.org>
Autobuild-User(master): Alexander Bokovoy <ab@samba.org>
Autobuild-Date(master): Tue Sep 11 10:00:05 CEST 2018 on sn-devel-144

buildtools/wafsamba/samba_waf18.py

index 8a4558d46ded8a823153db64b2317cce1d723da2..26441309d4f181cce8c59195be90827a05c1bf2e 100644 (file)
@@ -133,23 +133,6 @@ def undefine(self, key, from_env=True, comment=None):
     if from_env:
         self.env[key] = ()
 
-def install_dir(self, path):
-        if not path:
-                return []
-
-        destpath = Utils.subst_vars(path, self.env)
-
-        if self.is_install > 0:
-                Logs.info('* creating %s', destpath)
-                Utils.check_dir(destpath)
-        elif self.is_install < 0:
-                Logs.info('* removing %s', destpath)
-                try:
-                        os.remove(destpath)
-                except OSError:
-                        pass
-Build.BuildContext.install_dir = install_dir
-
 class ConfigurationContext(Configure.ConfigurationContext):
     def init_dirs(self):
         self.setenv('default')