From 842effcd6428c3ed57f97c50fc62f470d5ade85b Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Thu, 28 Mar 2019 17:02:38 -0700 Subject: [PATCH] Disable python bindings Also remove perl bindings option since that option no longer exists. Disable python bindings because we do not use them and currently they do not work on macOS because clang is used to compile the C++ files and Apple Clang no longer allows that. --- ups/eupspkg.cfg.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ups/eupspkg.cfg.sh b/ups/eupspkg.cfg.sh index 60c2468f705..7ea50e57dca 100644 --- a/ups/eupspkg.cfg.sh +++ b/ups/eupspkg.cfg.sh @@ -11,7 +11,7 @@ config() rm -rf ${BUILDDIR} mkdir ${BUILDDIR} cd ${BUILDDIR} - cmake ${PKGDIR} -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=${PREFIX} -DENABLE_PERL=FALSE + cmake ${PKGDIR} -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=${PREFIX} -DENABLE_PYTHON=FALSE } build()