Skip to content
Snippets Groups Projects
Commit acaf3ca7 authored by Iustin Pop's avatar Iustin Pop
Browse files

Fix building of Constants.hs w.r.t .pyc files


Unless this is run under run-in-tempdir, it will create as usual the
.pyc files.

Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarGuido Trotter <ultrotter@google.com>
parent 95b92c34
No related branches found
No related tags found
No related merge requests found
......@@ -1260,11 +1260,13 @@ htools/Ganeti/Version.hs: htools/Ganeti/Version.hs.in \
htools/Ganeti/Constants.hs: htools/Ganeti/Constants.hs.in \
lib/constants.py lib/_autoconf.py lib/luxi.py lib/errors.py \
lib/jstore.py \
lib/jstore.py $(RUN_IN_TEMPDIR)\
$(CONVERT_CONSTANTS) $(built_base_sources) \
| lib/_vcsversion.py
set -e; \
{ cat $< ; PYTHONPATH=. $(CONVERT_CONSTANTS); } > $@
{ cat $< ; \
PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(CONVERT_CONSTANTS); \
} > $@
htest/Test/Ganeti/TestImports.hs: htest/Test/Ganeti/TestImports.hs.in \
$(built_base_sources)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment