minor bugfixes
This commit is contained in:
parent
9be238b149
commit
599e8eff89
|
|
@ -584,7 +584,7 @@ class AppRunner(DirectObject):
|
|||
else:
|
||||
# If it's an unknown package, just delete it directly.
|
||||
print "Deleting unknown package %s" % (packageData.pathname)
|
||||
self.rmtree(packageData.pathname())
|
||||
self.rmtree(packageData.pathname)
|
||||
|
||||
packages = self.deletePackages(packages)
|
||||
if packages:
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ class HostInfo:
|
|||
""" Assigns self.hostUrl, and related values. """
|
||||
self.hostUrl = hostUrl
|
||||
|
||||
if self.hostUrl is None:
|
||||
if not self.hostUrl:
|
||||
# A special case: the URL will be set later.
|
||||
self.hostUrlPrefix = None
|
||||
self.downloadUrlPrefix = None
|
||||
|
|
|
|||
|
|
@ -220,7 +220,7 @@
|
|||
// to invoke a particular instance of Panda.
|
||||
//
|
||||
|
||||
#define BUILD_TARGET $[and $[PANDA_PACKAGE_HOST_URL],$[HAVE_TINYXML],$[HAVE_PYTHON],$[HAVE_OPENSSL]]
|
||||
#define BUILD_TARGET $[and $[HAVE_TINYXML],$[HAVE_PYTHON],$[HAVE_OPENSSL]]
|
||||
#define USE_PACKAGES tinyxml python openssl cg
|
||||
#define TARGET p3dpython
|
||||
|
||||
|
|
@ -268,7 +268,7 @@
|
|||
// the desktop.)
|
||||
//
|
||||
|
||||
#define BUILD_TARGET $[and $[PANDA_PACKAGE_HOST_URL],$[HAVE_TINYXML],$[HAVE_PYTHON],$[HAVE_OPENSSL],$[WINDOWS_PLATFORM]]
|
||||
#define BUILD_TARGET $[and $[HAVE_TINYXML],$[HAVE_PYTHON],$[HAVE_OPENSSL],$[WINDOWS_PLATFORM]]
|
||||
#define USE_PACKAGES tinyxml python openssl
|
||||
#define TARGET p3dpythonw
|
||||
#define EXTRA_CDEFS NON_CONSOLE
|
||||
|
|
@ -314,7 +314,7 @@
|
|||
// desparation fallback in case forking fails for some reason.
|
||||
//
|
||||
|
||||
#define BUILD_TARGET $[and $[PANDA_PACKAGE_HOST_URL],$[HAVE_TINYXML],$[HAVE_PYTHON],$[HAVE_OPENSSL]]
|
||||
#define BUILD_TARGET $[and $[HAVE_TINYXML],$[HAVE_PYTHON],$[HAVE_OPENSSL]]
|
||||
#define USE_PACKAGES tinyxml python openssl cg
|
||||
#define TARGET libp3dpython
|
||||
#define LIB_PREFIX
|
||||
|
|
|
|||
Loading…
Reference in New Issue