about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyqt-builder/use-sip-distinfo-from-path.patch
blob: 43b2d7367e9639996d4a44754f3fed1e77abd677 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/pyqtbuild/builder.py b/pyqtbuild/builder.py
index 3f35a7f..58701dd 100644
--- a/pyqtbuild/builder.py
+++ b/pyqtbuild/builder.py
@@ -51,15 +51,6 @@ class QmakeBuilder(Builder):
         """ Set default values for user options that haven't been set yet. """
 
         if tool in Option.BUILD_TOOLS:
-            # A PEP 517 frontend will set PATH so that sip-distinfo is found on
-            # it.  However for our own frontends we want to use the version
-            # corresponding to the frontend (and, anyway, the frontend may not
-            # be on PATH).
-            if tool != 'pep517':
-                self._sip_distinfo = os.path.join(
-                        os.path.abspath(os.path.dirname(sys.argv[0])),
-                        self._sip_distinfo)
-
             # Check we have a qmake.
             if self.qmake is None:
                 self.qmake = self._find_exe('qmake')