Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

setup: separate build_qt command like build_mo

Changeset 33f47cdf23a9

Parent a074e5d8ac31

by Yuya Nishihara

Changes to one file · Browse files at 33f47cdf23a9 Showing diff from parent a074e5d8ac31 Diff from another changeset...

Change 1 of 1 Show Entire File setup.py Stacked
 
77
78
79
80
81
82
 
83
84
85
86
 
87
88
89
 
77
78
79
 
80
81
82
83
84
85
 
86
87
88
89
@@ -77,13 +77,13 @@
  self.compile_ui(join(dirpath, filename))   elif filename.endswith('.qrc'):   self.compile_rc(join(dirpath, filename)) - build.run(self)     +build.sub_commands.insert(0, ('build_qt', None))  build.sub_commands.append(('build_mo', None))    cmdclass = { - 'build': build_qt , + 'build_qt': build_qt ,   'build_mo': build_mo ,   }