mirror of
				https://git.proxmox.com/git/systemd
				synced 2025-11-04 00:56:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			428 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			428 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
# SPDX-License-Identifier: LGPL-2.1-or-later
 | 
						|
set -e
 | 
						|
 | 
						|
cflags="CFLAGS=${CFLAGS-}"
 | 
						|
cxxflags="CXXFLAGS=${CXXFLAGS-}"
 | 
						|
args=()
 | 
						|
 | 
						|
for arg in "$@"; do
 | 
						|
    case "$arg" in
 | 
						|
        CFLAGS=*)
 | 
						|
            cflags="$arg"
 | 
						|
            ;;
 | 
						|
        CXXFLAGS=*)
 | 
						|
            cxxflags="$arg"
 | 
						|
            ;;
 | 
						|
        *)
 | 
						|
            args+=("$arg")
 | 
						|
    esac
 | 
						|
done
 | 
						|
 | 
						|
export "${cflags?}" "${cxxflags?}"
 | 
						|
set -x
 | 
						|
exec meson build "${args[@]}"
 |