diff --git a/setup/resources.py b/setup/resources.py index 84ff136371..1501e28017 100644 --- a/setup/resources.py +++ b/setup/resources.py @@ -9,7 +9,7 @@ __docformat__ = 'restructuredtext en' import os, cPickle, re, anydbm, shutil, marshal, zipfile, glob from zlib import compress -from setup import Command, basenames, __appname__ +from setup import Command, basenames, __appname__, iswindows def get_opts_from_parser(parser): def do_opt(opt): @@ -128,7 +128,7 @@ class Resources(Command): if not os.path.exists(base): os.makedirs(base) - if self.newer(dest, src): + if self.newer(dest, src) or iswindows: self.info('\tGenerating Kanwadict') for line in open(src, "r"):