From 25859082967f46502d48b76e46e9099f1b6af90a Mon Sep 17 00:00:00 2001 From: robk-tahoe Date: Wed, 9 Jan 2008 19:02:53 -0700 Subject: [PATCH] tweaks to build process to support py2exe py2exe is unable to handle .eggs which are packaged as zip files in preference it will pull in other versions of libraries if they can be found in the environment. this changes causes .eggs to be built as .egg directories, which py2exe can handle. --- Makefile | 3 +-- misc/dependencies/{build-deps-setup.py => setup.py} | 0 2 files changed, 1 insertion(+), 2 deletions(-) rename misc/dependencies/{build-deps-setup.py => setup.py} (100%) diff --git a/Makefile b/Makefile index 5bf40467..438d006c 100644 --- a/Makefile +++ b/Makefile @@ -50,8 +50,7 @@ build-auto-deps: check-deps echo PYTHONPATH="$(PYTHONPATH)$(PATHSEP)$(SUPPORTLIB)$(PATHSEP)" $(PYTHON) misc/dependencies/build-deps-setup.py install --prefix="$(SUPPORT)" @-PYTHONPATH="$(PYTHONPATH)$(PATHSEP)$(SUPPORTLIB)$(PATHSEP)" \ $(PYTHON) misc/dependencies/build-deps-setup.py install \ - --prefix="$(SUPPORT)" || \ - echo "Build of Tahoe's bundled, automatically built dependent libraries failed -- please see docs/install.html for instructions." + --prefix="$(SUPPORT)" # The following target is here because I don't know how to tell the buildmaster # to start instructing his slaves to "build-auto-deps" instead of instructing diff --git a/misc/dependencies/build-deps-setup.py b/misc/dependencies/setup.py similarity index 100% rename from misc/dependencies/build-deps-setup.py rename to misc/dependencies/setup.py -- 2.45.2