diff options
author | Julien Rioux <jrioux@physics.utoronto.ca> | 2011-12-18 19:25:50 -0500 |
---|---|---|
committer | Graham Percival <graham@percival-music.ca> | 2011-12-25 18:34:27 -0800 |
commit | 6c7d15f493c2b913c4ee51204a107d4494b4eb19 (patch) | |
tree | 5416665aa74ac9b52b90f226b367c2b5956e89ae /stepmake | |
parent | f9e17f32c80c9d0cbbc54fe318c7708f62a3a93d (diff) |
Build: Version dependency for python modules (issue 1726).
Diffstat (limited to 'stepmake')
-rw-r--r-- | stepmake/stepmake/python-module-rules.make | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stepmake/stepmake/python-module-rules.make b/stepmake/stepmake/python-module-rules.make index f32732f584..bf99f8feaa 100644 --- a/stepmake/stepmake/python-module-rules.make +++ b/stepmake/stepmake/python-module-rules.make @@ -8,7 +8,7 @@ $(outdir)/%.pyc: $(outdir)/%.py $(outdir)/%.pyo: $(outdir)/%.py $(PYTHON) -O -c 'import py_compile; py_compile.compile ("$<")' -$(outdir)/%.py: %.py $(config_make) +$(outdir)/%.py: %.py $(config_make) $(depth)/VERSION cat $< | sed $(sed-atfiles) | sed $(sed-atvariables) > $@ chmod 755 $@ |