aboutsummaryrefslogtreecommitdiff
path: root/contrib/macdeploy/macdeployqtplus
diff options
context:
space:
mode:
authorBen Woosley <ben.woosley@gmail.com>2019-01-16 01:07:23 -0800
committerBen Woosley <ben.woosley@gmail.com>2019-01-16 12:13:59 -0800
commit4e81438f6556d059923f07409264c11c41cc4a0b (patch)
tree9941fc2f2540ea6f4d3489a5627694ee05f91eb8 /contrib/macdeploy/macdeployqtplus
parentfcb6694a9945d2a02f40587e18bd395ef64048e0 (diff)
downloadbitcoin-4e81438f6556d059923f07409264c11c41cc4a0b.tar.xz
build: Drop macports support
It's untested / unmaintained, according to theuni. https://github.com/bitcoin/bitcoin/pull/14920/files#r246964938
Diffstat (limited to 'contrib/macdeploy/macdeployqtplus')
-rwxr-xr-xcontrib/macdeploy/macdeployqtplus6
1 files changed, 0 insertions, 6 deletions
diff --git a/contrib/macdeploy/macdeployqtplus b/contrib/macdeploy/macdeployqtplus
index 17ce6c44f9..9da03e5b02 100755
--- a/contrib/macdeploy/macdeployqtplus
+++ b/contrib/macdeploy/macdeployqtplus
@@ -172,12 +172,6 @@ class DeploymentInfo(object):
if os.path.exists(os.path.join(parentDir, "translations")):
# Classic layout, e.g. "/usr/local/Trolltech/Qt-4.x.x"
self.qtPath = parentDir
- elif os.path.exists(os.path.join(parentDir, "share", "qt4", "translations")):
- # MacPorts layout, e.g. "/opt/local/share/qt4"
- self.qtPath = os.path.join(parentDir, "share", "qt4")
- elif os.path.exists(os.path.join(os.path.dirname(parentDir), "share", "qt4", "translations")):
- # Newer Macports layout
- self.qtPath = os.path.join(os.path.dirname(parentDir), "share", "qt4")
else:
self.qtPath = os.getenv("QTDIR", None)