summaryrefslogtreecommitdiffstats
path: root/lasso/extract_types.py
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2009-03-27 15:04:36 +0000
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2009-03-27 15:04:36 +0000
commitdcea6b26a3221be92559829606f4d089cee6fa77 (patch)
treeebe08fca2b006f90a2270ba90c6d16952beeee7a /lasso/extract_types.py
parentd79b3e5b3a86ff2dd3163a0fc9d80c2461b23351 (diff)
downloadlasso-dcea6b26a3221be92559829606f4d089cee6fa77.tar.gz
lasso-dcea6b26a3221be92559829606f4d089cee6fa77.tar.xz
lasso-dcea6b26a3221be92559829606f4d089cee6fa77.zip
Makefile: missing dependencies for built sources
* lasso/Makefile.am: remove .PHONY declaration on built sources and set appropriate dependencies. * lasso/extract_types.py: with new dependencies well defined in Makefile no need to verify change in the content of the file, just overwrite it.
Diffstat (limited to 'lasso/extract_types.py')
-rw-r--r--lasso/extract_types.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lasso/extract_types.py b/lasso/extract_types.py
index f6dc4abe..36f1fdc8 100644
--- a/lasso/extract_types.py
+++ b/lasso/extract_types.py
@@ -61,5 +61,4 @@ for header_file in header_files:
print >> fd, "\tNULL"
print >> fd, "};"
-if not os.path.exists('types.c') or fd.getvalue() != file('types.c').read():
- file('types.c', 'w').write(fd.getvalue())
+file('types.c', 'w').write(fd.getvalue())