Fixed the setup script to ensure that doesn't produce errors when creating .deb packages
Updated to version 4.9.0
This commit is contained in:
parent
6b3b7ccf81
commit
810495c0d7
2 changed files with 85 additions and 80 deletions
4
setup.py
4
setup.py
|
|
@ -44,7 +44,7 @@ def get_data_files():
|
|||
|
||||
def compile_translations():
|
||||
|
||||
if (os.system("msgfmt -V") != 0):
|
||||
if (os.system("msgfmt -V > /dev/null") != 0):
|
||||
print('You need the binary "msgfmt" (from "gettext") to compile the translations. Aborting')
|
||||
sys.exit(-1)
|
||||
|
||||
|
|
@ -81,7 +81,7 @@ except:
|
|||
setup(
|
||||
name='devedeng',
|
||||
|
||||
version='4.8.12',
|
||||
version='4.9.0',
|
||||
|
||||
description='A video DVD creator',
|
||||
long_description="A program that allows to create video DVDs",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue