|  | @@ -375,7 +375,7 @@ endif
 | 
	
		
			
				|  |  |  endif
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  ifeq ($(OS_TARGET), darwin)
 | 
	
		
			
				|  |  | -CODESIGN?=$(strip $(wildcard $(addsuffix /codesign,$(SEARCHPATH))))
 | 
	
		
			
				|  |  | +CODESIGN?=$(firstword $(wildcard $(addsuffix /codesign$(SRCEXEEXT),$(SEARCHPATH))))
 | 
	
		
			
				|  |  |  endif
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  # Use -Sew option by default
 | 
	
	
		
			
				|  | @@ -683,7 +683,7 @@ ifneq ($(OS_TARGET),darwin)
 | 
	
		
			
				|  |  |  DIFFRESULT:=$(shell $(DIFF) $(OLDFPC) $(FPC))
 | 
	
		
			
				|  |  |  else
 | 
	
		
			
				|  |  |  ifneq ($(CODESIGN),)
 | 
	
		
			
				|  |  | -DIFFRESULT:=$(shell $(COPY) $(OLDFPC) $(OLDFPC).tmp; $(COPY) $(FPC) $(FPC).tmp; strip -no_uuid $(OLDFPC).tmp; strip -no_uuid $(FPC).tmp; $(CODESIGN) --remove-signature $(OLDFPC).tmp; codesign --remove-signature $(FPC).tmp; $(DIFF) $(OLDFPC).tmp $(FPC).tmp; $(RMPROG) $(OLDFPC).tmp $(FPC).tmp)
 | 
	
		
			
				|  |  | +DIFFRESULT:=$(shell $(COPY) $(OLDFPC) $(OLDFPC).tmp; $(COPY) $(FPC) $(FPC).tmp; strip -no_uuid $(OLDFPC).tmp; strip -no_uuid $(FPC).tmp; $(CODESIGN) --remove-signature $(OLDFPC).tmp; $(CODESIGN) --remove-signature $(FPC).tmp; $(DIFF) $(OLDFPC).tmp $(FPC).tmp; $(RMPROG) $(OLDFPC).tmp $(FPC).tmp)
 | 
	
		
			
				|  |  |  else
 | 
	
		
			
				|  |  |  DIFFRESULT:=$(shell $(COPY) $(OLDFPC) $(OLDFPC).tmp; $(COPY) $(FPC) $(FPC).tmp; strip -no_uuid $(OLDFPC).tmp; strip -no_uuid $(FPC).tmp; $(DIFF) $(OLDFPC).tmp $(FPC).tmp; $(RMPROG) $(OLDFPC).tmp $(FPC).tmp)
 | 
	
		
			
				|  |  |  endif
 |