Bug 1094500

Summary: liborcus needs trivial patch to enable ppc64le
Product: [Fedora] Fedora Reporter: Brent Baude <bbaude>
Component: liborcusAssignee: David Tardon <dtardon>
Status: CLOSED RAWHIDE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: medium Docs Contact:
Priority: unspecified    
Version: rawhideCC: caolanm, dtardon, sbergman
Target Milestone: ---   
Target Release: ---   
Hardware: ppc64le   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2014-05-07 06:56:47 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 1051573    

Description Brent Baude 2014-05-05 20:32:19 UTC
The following patch enables ppc64le in liborcus.  Please add to rawhide:

[baude@ppc64le liborcus]$ cat add-ppc64le.patch 
--- liborcus-0.5.1.orig/configure	2014-05-05 15:21:53.519683309 -0500
+++ liborcus-0.5.1/configure	2014-05-05 15:22:51.949782273 -0500
@@ -15335,7 +15335,7 @@
 
                         libsubdirs="lib"
     ax_arch=`uname -m`
-    if test $ax_arch = x86_64 -o $ax_arch = aarch64 -o $ax_arch = ppc64 -o $ax_arch = s390x -o $ax_arch = sparc64; then
+    if test $ax_arch = x86_64 -o $ax_arch = aarch64 -o $ax_arch = ppc64 -o $ax_arch = s390x -o $ax_arch = sparc64 -o $ax_arch = ppc64le; then
         libsubdirs="lib64 lib lib64"
     fi