Fix and rearrange 'tarbin' Makefile rule
This patch fixes the 'tarbin' Makefile rule (which was broken due to a missing '\' for line-continuation), and also rearranges that rule to match the ordering that is used in the configure script, so that the list can be checked more easily, to avoid conflicts, etc. Signed-off-by: Stuart Brady <stuart.brady@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6149 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
		
							parent
							
								
									f53bca180a
								
							
						
					
					
						commit
						40e8a53b1e
					
				
							
								
								
									
										33
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										33
									
								
								Makefile
									
									
									
									
									
								
							@ -314,37 +314,37 @@ tar:
 | 
				
			|||||||
tarbin:
 | 
					tarbin:
 | 
				
			||||||
	cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
 | 
						cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
 | 
				
			||||||
	$(bindir)/qemu \
 | 
						$(bindir)/qemu \
 | 
				
			||||||
	$(bindir)/qemu-system-ppc \
 | 
					 | 
				
			||||||
	$(bindir)/qemu-system-ppc64 \
 | 
					 | 
				
			||||||
	$(bindir)/qemu-system-ppcemb \
 | 
					 | 
				
			||||||
	$(bindir)/qemu-system-sparc \
 | 
					 | 
				
			||||||
	$(bindir)/qemu-system-x86_64 \
 | 
						$(bindir)/qemu-system-x86_64 \
 | 
				
			||||||
 | 
						$(bindir)/qemu-system-arm \
 | 
				
			||||||
 | 
						$(bindir)/qemu-system-cris \
 | 
				
			||||||
 | 
						$(bindir)/qemu-system-m68k \
 | 
				
			||||||
	$(bindir)/qemu-system-mips \
 | 
						$(bindir)/qemu-system-mips \
 | 
				
			||||||
	$(bindir)/qemu-system-mipsel \
 | 
						$(bindir)/qemu-system-mipsel \
 | 
				
			||||||
	$(bindir)/qemu-system-mips64 \
 | 
						$(bindir)/qemu-system-mips64 \
 | 
				
			||||||
	$(bindir)/qemu-system-mips64el \
 | 
						$(bindir)/qemu-system-mips64el \
 | 
				
			||||||
	$(bindir)/qemu-system-arm \
 | 
						$(bindir)/qemu-system-ppc \
 | 
				
			||||||
	$(bindir)/qemu-system-m68k \
 | 
						$(bindir)/qemu-system-ppcemb \
 | 
				
			||||||
 | 
						$(bindir)/qemu-system-ppc64 \
 | 
				
			||||||
	$(bindir)/qemu-system-sh4 \
 | 
						$(bindir)/qemu-system-sh4 \
 | 
				
			||||||
	$(bindir)/qemu-system-sh4eb \
 | 
						$(bindir)/qemu-system-sh4eb \
 | 
				
			||||||
	$(bindir)/qemu-system-cris \
 | 
						$(bindir)/qemu-system-sparc \
 | 
				
			||||||
	$(bindir)/qemu-i386 \
 | 
						$(bindir)/qemu-i386 \
 | 
				
			||||||
	$(bindir)/qemu-x86_64 \
 | 
						$(bindir)/qemu-x86_64 \
 | 
				
			||||||
 | 
						$(bindir)/qemu-alpha \
 | 
				
			||||||
	$(bindir)/qemu-arm \
 | 
						$(bindir)/qemu-arm \
 | 
				
			||||||
	$(bindir)/qemu-armeb \
 | 
						$(bindir)/qemu-armeb \
 | 
				
			||||||
        $(bindir)/qemu-sparc \
 | 
						$(bindir)/qemu-cris \
 | 
				
			||||||
        $(bindir)/qemu-sparc32plus \
 | 
						$(bindir)/qemu-m68k \
 | 
				
			||||||
        $(bindir)/qemu-sparc64 \
 | 
						$(bindir)/qemu-mips \
 | 
				
			||||||
 | 
						$(bindir)/qemu-mipsel \
 | 
				
			||||||
	$(bindir)/qemu-ppc \
 | 
						$(bindir)/qemu-ppc \
 | 
				
			||||||
	$(bindir)/qemu-ppc64 \
 | 
						$(bindir)/qemu-ppc64 \
 | 
				
			||||||
	$(bindir)/qemu-ppc64abi32 \
 | 
						$(bindir)/qemu-ppc64abi32 \
 | 
				
			||||||
        $(bindir)/qemu-mips \
 | 
					 | 
				
			||||||
        $(bindir)/qemu-mipsel \
 | 
					 | 
				
			||||||
        $(bindir)/qemu-alpha \
 | 
					 | 
				
			||||||
        $(bindir)/qemu-m68k \
 | 
					 | 
				
			||||||
	$(bindir)/qemu-sh4 \
 | 
						$(bindir)/qemu-sh4 \
 | 
				
			||||||
	$(bindir)/qemu-sh4eb \
 | 
						$(bindir)/qemu-sh4eb \
 | 
				
			||||||
        $(bindir)/qemu-cris \
 | 
						$(bindir)/qemu-sparc \
 | 
				
			||||||
 | 
						$(bindir)/qemu-sparc64 \
 | 
				
			||||||
 | 
						$(bindir)/qemu-sparc32plus \
 | 
				
			||||||
	$(bindir)/qemu-img \
 | 
						$(bindir)/qemu-img \
 | 
				
			||||||
	$(bindir)/qemu-nbd \
 | 
						$(bindir)/qemu-nbd \
 | 
				
			||||||
	$(datadir)/bios.bin \
 | 
						$(datadir)/bios.bin \
 | 
				
			||||||
@ -360,7 +360,8 @@ tarbin:
 | 
				
			|||||||
	$(datadir)/pxe-e1000.bin \
 | 
						$(datadir)/pxe-e1000.bin \
 | 
				
			||||||
	$(docdir)/qemu-doc.html \
 | 
						$(docdir)/qemu-doc.html \
 | 
				
			||||||
	$(docdir)/qemu-tech.html \
 | 
						$(docdir)/qemu-tech.html \
 | 
				
			||||||
	$(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1
 | 
						$(mandir)/man1/qemu.1 \
 | 
				
			||||||
 | 
						$(mandir)/man1/qemu-img.1 \
 | 
				
			||||||
	$(mandir)/man8/qemu-nbd.8
 | 
						$(mandir)/man8/qemu-nbd.8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Include automatically generated dependency files
 | 
					# Include automatically generated dependency files
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user