Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 92334 - unionfs-1.0.11 fails to build on x86
Summary: unionfs-1.0.11 fails to build on x86
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Core system (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Malcolm Lashley (RETIRED)
URL:
Whiteboard:
Keywords:
: 92722 (view as bug list)
Depends on:
Blocks:
 
Reported: 2005-05-11 23:32 UTC by Magnus Kessler
Modified: 2005-05-15 12:06 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Magnus Kessler 2005-05-11 23:32:44 UTC
Due to the addition of a bug fix for amd64, the unionfs-1.0.11 ebuild now fails on non-amd64 platforms on the line

	use amd64 && epatch ${FILESDIR}/${P}-amd64.patch || die

in src_unpack(). Removing that line gives a successful build.

Reproducible: Always
Steps to Reproduce:
1. emerge =sys-fs/unionfs-1.0.11
Actual Results:  
>>> Unpacking unionfs-1.0.11.tar.gz to /var/tmp/portage/unionfs-1.0.11/work 
 
!!! ERROR: sys-fs/unionfs-1.0.11 failed. 
!!! Function src_unpack, Line 29, Exitcode 1 
 

Expected Results:  
>>> sys-fs/unionfs-1.0.11 merged.
Comment 1 Jakub Moc (RETIRED) gentoo-dev 2005-05-12 02:28:20 UTC
Malcolm, you broke it! ;-)
Comment 2 Eric Edgar (RETIRED) gentoo-dev 2005-05-12 12:37:44 UTC
change 
use amd64 && epatch ${FILESDIR}/${P}-amd64.patch || die

to 

if use amd64; then
      epatch ${FILESDIR}/${P}-amd64.patch || die
fi

Comment 3 Magnus Kessler 2005-05-15 11:34:35 UTC
*** Bug 92722 has been marked as a duplicate of this bug. ***
Comment 4 Stefan Schweizer (RETIRED) gentoo-dev 2005-05-15 12:05:54 UTC
Just fixed that, thank you guys for uncovering the bug.