remove false comma

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1701 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2004-09-03 11:53:09 +00:00
parent a5d65ede18
commit 999207ce89

View file

@ -159,13 +159,13 @@ if os.name=='nt':
macros = [('YY_NO_UNISTD_H', None)]
cargs = []
# add post-install script for the bdist_wininst command
scripts = ['linkchecker', 'install-linkchecker.py'],
scripts = ['linkchecker', 'install-linkchecker.py']
else:
macros = []
# for gcc 3.x we could add -std=gnu99 to get rid of warnings, but
# that breaks other compilers
cargs = ["-pedantic"]
scripts = ['linkchecker'],
scripts = ['linkchecker']
myname = "Bastian Kleineidam"
myemail = "calvin@users.sourceforge.net"