dev-lang/python: Fix cross-compiling for 3.5

Package-Manager: portage-2.2.20_p169_p6532
This commit is contained in:
Mike Gilbert
2015-09-19 22:07:40 -04:00
parent c7f7df5434
commit c0d97a27e1
2 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
Mark all targets as "secondary"
This allows make to avoid rebuilding unnecessary intermediate files, which
is useful when cross-compiling.
See Parser/pgen and Programs/_freeze_importlib in Makefile.pre.in.
diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1672,6 +1672,8 @@
.PHONY: smelly funny patchcheck touch altmaninstall commoninstall
.PHONY: gdbhooks
+.SECONDARY:
+
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
# Local Variables:
# mode: makefile