File: pybuild_install_fix.patch

package info (click to toggle)
gau2grid 2.0.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 688 kB
  • sloc: python: 5,326; makefile: 31; sh: 24
file content (11 lines) | stat: -rw-r--r-- 538 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
--- ./setup.py.orig	2019-10-28 22:10:41.444104442 +0100
+++ ./setup.py	2019-10-28 22:10:54.388314190 +0100
@@ -56,8 +56,6 @@
             os.makedirs(self.build_temp)
         subprocess.check_call(['cmake', ext.sourcedir] + internal_cmake_args, cwd=self.build_temp, env=env)
         subprocess.check_call(['cmake', '--build', '.'] + build_args, cwd=self.build_temp)
-        if not bypass_install:
-            subprocess.check_call(['cmake', '--build', '.', '--target', 'install'], cwd=self.build_temp)
 
 
 if __name__ == "__main__":