Lines Matching +full:wi +full:- +full:fi
2 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3 Date: Wed, 22 Feb 2017 16:21:31 -0800
6 This commit adds a new configure option --disable-pyc-build to disable
9 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
11 Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
12 ---
17 diff --git a/Makefile.pre.in b/Makefile.pre.in
19 --- a/Makefile.pre.in
21 @@ -1600,6 +1600,7 @@ libinstall: build_all $(srcdir)/Modules/xxmodule.c
24 fi
26 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
27 $(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
28 -j0 -d $(LIBDEST) -f \
29 @@ -1627,6 +1628,7 @@ libinstall: build_all $(srcdir)/Modules/xxmodule.c
30 $(PYTHON_FOR_BUILD) -Wi -OO $(DESTDIR)$(LIBDEST)/compileall.py \
31 -j0 -d $(LIBDEST)/site-packages -f \
32 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
34 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
35 $(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/Grammar.txt
36 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
37 diff --git a/configure.ac b/configure.ac
39 --- a/configure.ac
41 @@ -1110,6 +1110,12 @@ fi
47 +AC_ARG_ENABLE(pyc-build,
48 + AS_HELP_STRING([--disable-pyc-build], [disable build of pyc files]),
53 # will find it with a -framework option). For this reason there is an
54 --