summaryrefslogtreecommitdiff
path: root/distribution/lib/DistUtils.py
diff options
context:
space:
mode:
Diffstat (limited to 'distribution/lib/DistUtils.py')
-rw-r--r--distribution/lib/DistUtils.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/distribution/lib/DistUtils.py b/distribution/lib/DistUtils.py
index 05a2d93ba5f..daf505ad5e8 100644
--- a/distribution/lib/DistUtils.py
+++ b/distribution/lib/DistUtils.py
@@ -767,6 +767,19 @@ class Platform:
else:
return ("%s-" + version + "-bin-" + self.pkgPlatform) % prefix
+ def getJGoodiesForms(self):
+ for t in self.thirdParties:
+ if t.__str__() == "JGoodiesForms":
+ return t.getJar()
+ print "Unable to find JGoodiesForms"
+ sys.exit(1)
+
+ def getJGoodiesLooks(self):
+ for t in self.thirdParties:
+ if t.__str__() == "JGoodiesLooks":
+ return t.getJar()
+ print "Unable to find JGoodiesLooks"
+ sys.exit(1)
class Darwin(Platform):
def __init__(self, uname, arch, languages):