|  | @@ -36,7 +36,7 @@ Pod::Spec.new do |s|
 | 
	
		
			
				|  |  |    # exclamation mark ensures that other "regular" pods will be able to find it as it'll be installed
 | 
	
		
			
				|  |  |    # before them.
 | 
	
		
			
				|  |  |    s.name     = '!ProtoCompiler'
 | 
	
		
			
				|  |  | -  v = '3.0.0-beta-3.1'
 | 
	
		
			
				|  |  | +  v = '3.0.0-beta-4'
 | 
	
		
			
				|  |  |    s.version  = v
 | 
	
		
			
				|  |  |    s.summary  = 'The Protobuf Compiler (protoc) generates Objective-C files from .proto files'
 | 
	
		
			
				|  |  |    s.description = <<-DESC
 | 
	
	
		
			
				|  | @@ -120,7 +120,7 @@ Pod::Spec.new do |s|
 | 
	
		
			
				|  |  |    repo_root = '../..'
 | 
	
		
			
				|  |  |    plugin = 'grpc_objective_c_plugin'
 | 
	
		
			
				|  |  |    s.prepare_command = <<-CMD
 | 
	
		
			
				|  |  | -    if [ ! -f protoc ]; then
 | 
	
		
			
				|  |  | +    if [ ! -f bin/protoc ]; then
 | 
	
		
			
				|  |  |        cd #{repo_root}
 | 
	
		
			
				|  |  |        # This will build protoc from the Protobuf submodule of gRPC, and put it in
 | 
	
		
			
				|  |  |        # #{repo_root}/bins/opt/protobuf.
 | 
	
	
		
			
				|  | @@ -129,7 +129,9 @@ Pod::Spec.new do |s|
 | 
	
		
			
				|  |  |        # _we do not want_. Find a way for this to always build from source.
 | 
	
		
			
				|  |  |        make #{plugin}
 | 
	
		
			
				|  |  |        cd -
 | 
	
		
			
				|  |  | +    else
 | 
	
		
			
				|  |  | +      mv bin/protoc .
 | 
	
		
			
				|  |  | +      mv include/google .
 | 
	
		
			
				|  |  |      fi
 | 
	
		
			
				|  |  |    CMD
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |  end
 |