mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-30 13:34:27 -04:00 
			
		
		
		
	This reverts commit77d3ac8e3e. This reverts commite665b3df2a. Signed-off-by: John Crispin <john@phrozen.org>
		
			
				
	
	
		
			15 lines
		
	
	
		
			398 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			398 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| --- a/Makefile
 | |
| +++ b/Makefile
 | |
| @@ -18,7 +18,10 @@ CFLAGS=$(CCOPT) $(GLIBCFIX) $(DEFINES)
 | |
|  
 | |
|  IPV4_TARGETS=tracepath ping clockdiff arping tftpd
 | |
|  IPV6_TARGETS=tracepath6 traceroute6 ping6
 | |
| -TARGETS=$(IPV4_TARGETS) $(IPV6_TARGETS)
 | |
| +TARGETS=$(IPV4_TARGETS)
 | |
| +ifeq ($(CONFIG_IPV6),y)
 | |
| +	TARGETS=$(IPV4_TARGETS) $(IPV6_TARGETS)
 | |
| +endif
 | |
|  
 | |
|  LASTTAG:=`git describe HEAD | sed -e 's/-.*//'`
 | |
|  TAG:=`date +s%Y%m%d`
 |