Back to .py suffix in files. Closes #394.

pull/431/head
Jussi Pakkanen 9 years ago
parent 52b66edb6c
commit 455e55f8e5
  1. 0
      meson.py
  2. 0
      mesonconf.py
  3. 0
      mesongui.py
  4. 0
      mesonintrospect.py
  5. 4
      run_tests.py
  6. 6
      setup.py
  7. 0
      wraptool.py

@ -46,6 +46,10 @@ print_debug = 'MESON_PRINT_TEST_OUTPUT' in os.environ
test_build_dir = 'work area'
install_dir = os.path.join(os.path.split(os.path.abspath(__file__))[0], 'install dir')
meson_command = os.path.join(os.getcwd(), 'meson')
if not os.path.exists(meson_command):
meson_command += '.py'
if not os.path.exists(meson_command):
raise RuntimeError('Could not find main Meson script to run.')
class StopException(Exception):
def __init__(self):

@ -37,7 +37,11 @@ setup(name='meson',
'mesonbuild.backend',
'mesonbuild.wrap'],
package_data={'mesonbuild': ['*.ui']},
scripts=['meson', 'mesonconf', 'mesongui', 'mesonintrospect', 'wraptool'],
scripts=['meson.py',
'mesonconf.py',
'mesongui.py',
'mesonintrospect.py',
'wraptool.py'],
data_files=[('share/man/man1', ['man/meson.1',
'man/mesonconf.1',
'man/mesongui.1',

Loading…
Cancel
Save