Browse Source

buildorder.py: Show package if lacking build.sh

android-5
Fredrik Fornwall 9 years ago
parent
commit
af8dfb4559
  1. 2
      scripts/buildorder.py

2
scripts/buildorder.py

@ -72,7 +72,7 @@ class TermuxPackage(object):
# search package build.sh # search package build.sh
build_sh_path = os.path.join(self.dir, 'build.sh') build_sh_path = os.path.join(self.dir, 'build.sh')
if not os.path.isfile(build_sh_path): if not os.path.isfile(build_sh_path):
raise Exception("build.sh not found") raise Exception("build.sh not found for package '" + name + "'")
self.buildfile = TermuxBuildFile(build_sh_path) self.buildfile = TermuxBuildFile(build_sh_path)
self.deps = self.buildfile._get_dependencies() self.deps = self.buildfile._get_dependencies()

Loading…
Cancel
Save