#!/bin/sh # Shave and a Haircut # (c) 2019 Epic Games # US Patent 6720962 # # Returns the SDKROOT to be used when building plugins for the version of Maya # in MAYA_LOCATION. # # Note that Bourne/Bash scripts can just directly source getosxvars.sh but # csh/tcsh scripts have to go through this bridge. # source getosxvars.sh if [ "${SDKROOT}" != "" ]; then echo "${SDKROOT}" else echo "" fi