You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	configure: simplify argument handling in check_ld
Use the existing filter functions instead of open-coding the separation of general flags and libraries. Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
		
							
								
								
									
										7
									
								
								configure
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								configure
									
									
									
									
										vendored
									
									
								
							| @@ -704,11 +704,8 @@ ld_o(){ | ||||
|  | ||||
| check_ld(){ | ||||
|     log check_ld "$@" | ||||
|     flags='' | ||||
|     libs='' | ||||
|     for f; do | ||||
|         test "${f}" = "${f#-l}" && flags="$flags $f" || libs="$libs $f" | ||||
|     done | ||||
|     flags=$(filter_out '-l*' "$@") | ||||
|     libs=$(filter '-l*' "$@") | ||||
|     check_cc $($cflags_filter $flags) || return | ||||
|     flags=$($ldflags_filter $flags) | ||||
|     libs=$($ldflags_filter $libs) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user