mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-19 05:06:25 -04:00
trying to fix bugs, mkay?
This commit is contained in:
parent
1d66c7c2a0
commit
cf50695c2f
@ -269,8 +269,12 @@ class Installer:
|
|||||||
package = None
|
package = None
|
||||||
if superHost:
|
if superHost:
|
||||||
package = superHost.getPackage(name, version, platform)
|
package = superHost.getPackage(name, version, platform)
|
||||||
|
if not package:
|
||||||
|
package = superHost.getPackage(name, version)
|
||||||
if not package:
|
if not package:
|
||||||
package = host.getPackage(name, version, platform)
|
package = host.getPackage(name, version, platform)
|
||||||
|
if not package:
|
||||||
|
package = host.getPackage(name, version)
|
||||||
if not package:
|
if not package:
|
||||||
Installer.notify.error("Package %s %s for %s not known on %s" % (
|
Installer.notify.error("Package %s %s for %s not known on %s" % (
|
||||||
name, version, platform, host.hostUrl))
|
name, version, platform, host.hostUrl))
|
||||||
@ -535,7 +539,7 @@ class Installer:
|
|||||||
pkginfoinfo = TarInfoRoot(".PKGINFO")
|
pkginfoinfo = TarInfoRoot(".PKGINFO")
|
||||||
pkginfoinfo.mtime = modtime
|
pkginfoinfo.mtime = modtime
|
||||||
pkginfoinfo.size = pkginfo.tell()
|
pkginfoinfo.size = pkginfo.tell()
|
||||||
pkginfoinfo.seek(0)
|
pkginfo.seek(0)
|
||||||
|
|
||||||
# Create a temporary directory and write the launcher and dependencies to it.
|
# Create a temporary directory and write the launcher and dependencies to it.
|
||||||
tempdir = self.__buildTempLinux(platform)
|
tempdir = self.__buildTempLinux(platform)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user