blob: a5f55572c35bea0bd9501d3daefdbe03898de272 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- python/dir.mk.orig Wed Feb 8 23:42:23 2006
+++ python/dir.mk Wed Feb 8 23:42:44 2006
@@ -24,7 +24,7 @@
$(ExportFileToDir) \
done; \
cd $(PYLIBDIR); \
- $(PYTHON) -c "import compileall; compileall.compile_dir('.')"; \
+ $(PYTHON) -c "import compileall; compileall.compile_dir('.',0)"; \
)
ifdef INSTALLTARGET
@@ -34,6 +34,6 @@
$(ExportFileToDir) \
done; \
cd $(INSTALLPYLIBDIR); \
- $(PYTHON) -c "import compileall; compileall.compile_dir('.')"; \
+ $(PYTHON) -c "import compileall; compileall.compile_dir('.',0)"; \
)
endif
|