Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 363577 | Differences between
and this patch

Collapse All | Expand All

(-)generic_stage_target.py.orig (-4 / +12 lines)
Lines 638-645 Link Here
638
					self.settings["source_path"]+"\nto "+\
638
					self.settings["source_path"]+"\nto "+\
639
					self.settings["chroot_path"]+\
639
					self.settings["chroot_path"]+\
640
						" (This may take some time) ...\n"
640
						" (This may take some time) ...\n"
641
				unpack_cmd="tar xjpf "+self.settings["source_path"]+" -C "+\
641
				if os.uname()[0] == "FreeBSD":
642
					self.settings["chroot_path"]
642
					unpack_cmd="LANG=en_US.UTF-8 tar xjpf "+self.settings["source_path"]+" -C "+\
643
						self.settings["chroot_path"]
644
				else:
645
					unpack_cmd="tar xjpf "+self.settings["source_path"]+" -C "+\
646
						self.settings["chroot_path"]
643
				error_msg="Tarball extraction of "+\
647
				error_msg="Tarball extraction of "+\
644
					self.settings["source_path"]+" to "+\
648
					self.settings["source_path"]+" to "+\
645
					self.settings["chroot_path"]+" failed."
649
					self.settings["chroot_path"]+" failed."
Lines 649-656 Link Here
649
				self.settings["source_path"]+"\nto "+\
653
				self.settings["source_path"]+"\nto "+\
650
				self.settings["chroot_path"]+\
654
				self.settings["chroot_path"]+\
651
				" (This may take some time) ...\n"
655
				" (This may take some time) ...\n"
652
			unpack_cmd="tar xjpf "+self.settings["source_path"]+" -C "+\
656
			if os.uname()[0] == "FreeBSD":
653
				self.settings["chroot_path"]
657
				unpack_cmd="tar xjpf "+self.settings["source_path"]+" -C "+\
658
					self.settings["chroot_path"]
659
			else:
660
				unpack_cmd="tar xjpf "+self.settings["source_path"]+" -C "+\
661
					self.settings["chroot_path"]
654
			error_msg="Tarball extraction of "+self.settings["source_path"]+\
662
			error_msg="Tarball extraction of "+self.settings["source_path"]+\
655
				" to "+self.settings["chroot_path"]+" failed."
663
				" to "+self.settings["chroot_path"]+" failed."
656
664

Return to bug 363577