13 lines
		
	
	
		
			323 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			323 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| # System Ruby's mkmf on Mojave (10.14) and later require SDKROOT set to work correctly.
 | |
| 
 | |
| source "$HOMEBREW_LIBRARY/Homebrew/shims/utils.sh"
 | |
| 
 | |
| try_exec_non_system "$SHIM_FILE" "$@"
 | |
| 
 | |
| if [[ -z "$SDKROOT" && -n "$HOMEBREW_SDKROOT" ]]; then
 | |
|   export SDKROOT=$HOMEBREW_SDKROOT
 | |
| fi
 | |
| 
 | |
| safe_exec "/usr/bin/$SHIM_FILE" "$@"
 | 
