build, imagebuilder: Do not require libncurses-dev
The buildroot and SDK both require `libncurses-dev` to be installed on the system, however the ImageBuilder uses precompiled binaries. This patch changes the prerequirements checks to skip the `libncurses-dev` part if running as ImageBuilder. Signed-off-by: Paul Spooren <mail@aparcar.org>
This commit is contained in:
		 Paul Spooren
					Paul Spooren
				
			
				
					committed by
					
						 Petr Štetiar
						Petr Štetiar
					
				
			
			
				
	
			
			
			 Petr Štetiar
						Petr Štetiar
					
				
			
						parent
						
							0a182fcba6
						
					
				
				
					commit
					4a1a58a3e2
				
			| @@ -51,10 +51,12 @@ $(eval $(call TestHostCommand,working-g++, \ | |||||||
| 		g++ -x c++ -o $(TMP_DIR)/a.out - -lstdc++ && \ | 		g++ -x c++ -o $(TMP_DIR)/a.out - -lstdc++ && \ | ||||||
| 		$(TMP_DIR)/a.out)) | 		$(TMP_DIR)/a.out)) | ||||||
|  |  | ||||||
|  | ifndef IB | ||||||
| $(eval $(call TestHostCommand,ncurses, \ | $(eval $(call TestHostCommand,ncurses, \ | ||||||
| 	Please install ncurses. (Missing libncurses.so or ncurses.h), \ | 	Please install ncurses. (Missing libncurses.so or ncurses.h), \ | ||||||
| 	echo 'int main(int argc, char **argv) { initscr(); return 0; }' | \ | 	echo 'int main(int argc, char **argv) { initscr(); return 0; }' | \ | ||||||
| 		gcc -include ncurses.h -x c -o $(TMP_DIR)/a.out - -lncurses)) | 		gcc -include ncurses.h -x c -o $(TMP_DIR)/a.out - -lncurses)) | ||||||
|  | endif | ||||||
|  |  | ||||||
| ifeq ($(HOST_OS),Linux) | ifeq ($(HOST_OS),Linux) | ||||||
|   zlib_link_flags := -Wl,-Bstatic -lz -Wl,-Bdynamic |   zlib_link_flags := -Wl,-Bstatic -lz -Wl,-Bdynamic | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user