From aed516ad56c855afa65a8aea847fdf64330e797e Mon Sep 17 00:00:00 2001
From: Andrew W Elble <aweits@rit.edu>
Date: Fri, 27 Mar 2020 22:35:13 -0400
Subject: [PATCH] TensorFlow: let install take care of the headers (#15718)

* TensorFlow: let install take care of the headers

we don't need to manually install them.

* no longer need to import glob
---
 .../repos/builtin/packages/py-tensorflow/package.py      | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/var/spack/repos/builtin/packages/py-tensorflow/package.py b/var/spack/repos/builtin/packages/py-tensorflow/package.py
index 0444a2e09a..64b97b05b2 100644
--- a/var/spack/repos/builtin/packages/py-tensorflow/package.py
+++ b/var/spack/repos/builtin/packages/py-tensorflow/package.py
@@ -3,7 +3,6 @@
 #
 # SPDX-License-Identifier: (Apache-2.0 OR MIT)
 
-from glob import glob
 import sys
 
 
@@ -699,14 +698,6 @@ def install(self, spec, prefix):
             setup_py('install', '--prefix={0}'.format(prefix),
                      '--single-version-externally-managed', '--root=/')
 
-            site_packages_dir = join_path(
-                prefix.lib,
-                ('python' + str(self.spec['python'].version.up_to(2))),
-                'site-packages')
-            fn = glob(join_path(site_packages_dir, "tensorflow-*"))
-            incpath = join_path(fn[0], "tensorflow/include")
-            setup_py('install_headers', '--install-dir={0}'.format(incpath))
-
     @run_after('install')
     @on_package_attributes(run_tests=True)
     def import_module_test(self):
-- 
GitLab