mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 380976f40f
			
		
	
	
		380976f40f
		
	
	
	
	
		
			
			We were only doing this if docker was enabled which isn't quite right.
Fixes: fc76c56d3f
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20191211170520.7747-17-alex.bennee@linaro.org>
		
	
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			564 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			564 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # -*- Mode: makefile -*-
 | |
| #
 | |
| # TCG Compiler Probe
 | |
| #
 | |
| # This Makefile fragment is included multiple times in the main make
 | |
| # script to probe for available compilers. This is used to build up a
 | |
| # selection of required docker targets before we invoke a sub-make for
 | |
| # each target.
 | |
| 
 | |
| DOCKER_IMAGE:=
 | |
| 
 | |
| -include $(BUILD_DIR)/tests/tcg/config-$(PROBE_TARGET).mak
 | |
| 
 | |
| ifneq ($(DOCKER_IMAGE),)
 | |
| build-tcg-tests-$(PROBE_TARGET): docker-image-$(DOCKER_IMAGE)
 | |
| endif
 | |
| $(BUILD_DIR)/tests/tcg/config_$(PROBE_TARGET).mak: config-host.mak
 | |
| config-host.mak: $(SRC_PATH)/tests/tcg/configure.sh
 |