mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-28 07:48:37 -04:00
makepackage: Fix extra comma in deb depends line when building without Python
This commit is contained in:
parent
d65ca1edd6
commit
ae6be7e113
@ -397,7 +397,8 @@ def MakeInstallerLinux(version, debversion=None, rpmversion=None, rpmrelease=1,
|
||||
provides = "panda3d"
|
||||
|
||||
# Require at least one of the Python versions we built for.
|
||||
depends += ", " + " | ".join("python" + version_info["version"] for version_info in install_python_versions)
|
||||
if install_python_versions:
|
||||
depends += ", " + " | ".join("python" + version_info["version"] for version_info in install_python_versions)
|
||||
|
||||
# But recommend the system version of Python 3.
|
||||
if python3_ver:
|
||||
|
Loading…
x
Reference in New Issue
Block a user