mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 22:44:27 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			393 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			393 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
--- a/tools/fiptool/Makefile
 | 
						|
+++ b/tools/fiptool/Makefile
 | 
						|
@@ -20,7 +20,7 @@ ifeq (${DEBUG},1)
 | 
						|
 else
 | 
						|
   HOSTCCFLAGS += -O2
 | 
						|
 endif
 | 
						|
-LDLIBS := -lcrypto
 | 
						|
+LDLIBS := -L${OPENSSL_DIR}/lib -lcrypto
 | 
						|
 
 | 
						|
 ifeq (${V},0)
 | 
						|
   Q := @
 | 
						|
@@ -28,7 +28,7 @@ else
 | 
						|
   Q :=
 | 
						|
 endif
 | 
						|
 
 | 
						|
-INCLUDE_PATHS := -I../../include/tools_share
 | 
						|
+INCLUDE_PATHS := -I../../include/tools_share -I${OPENSSL_DIR}/include
 | 
						|
 
 | 
						|
 HOSTCC ?= gcc
 | 
						|
 
 |