From 8ab12cb90f1869fd2ab9c18230675fc4d8625787 Mon Sep 17 00:00:00 2001 From: "James E.H. Turner" Date: Tue, 23 Aug 2016 12:42:41 -0300 Subject: Always use the OS Python in update_extern_pkg, to avoid conda changing its interpreter path at build time and then running it before relocating the path properly at install time -- and so we know it will continue working after testing on any given OS. --- scripts/update_extern_pkg | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'scripts/update_extern_pkg') diff --git a/scripts/update_extern_pkg b/scripts/update_extern_pkg index ce04650..cf08368 100755 --- a/scripts/update_extern_pkg +++ b/scripts/update_extern_pkg @@ -1,6 +1,10 @@ -#!/usr/bin/env python +#!/usr/bin/python # # Copyright(c) 2016 Association of Universities for Research in Astronomy, Inc. +# +# This script uses the OS Python to avoid Conda relocation/dependency problems +# (since it is run before package installation is complete). Both the LSB and +# MacOS define Python in /usr/bin as standard. import argparse import os, os.path -- cgit