Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 2084 - most binary not installed on ppc
Summary: most binary not installed on ppc
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All All
: High critical (vote)
Assignee: Pieter Van den Abeele (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-04-24 19:53 UTC by Gontran Zepeda
Modified: 2006-02-04 06:03 UTC (History)
0 users

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 Gontran Zepeda 2002-04-24 19:53:04 UTC
most src package creates object files in architecture specific directories,
causing an architecture specfic 'dobin' line.  Patch included for ppc
modification.  Similar consideration should be given other ARCHs, I
believe.  I ambitiously named my modified ebuild -r3.


--- most-4.9.0-r2.ebuild	Thu Apr  4 06:40:22 2002
+++ most-4.9.0-r3.ebuild	Wed Apr 24 16:43:54 2002
@@ -25,12 +25,14 @@
 
 src_install() {
 
-	dobin src/objs/most
+	if [ $ARCH = 'ppc' ]; then
+		dobin src/ppcobjs/most
+	else
+		dobin src/objs/most
+	fi
 	doman most.1
 
 	dodoc COPYING COPYRIGHT README changes.txt
 	docinto txt 
 	dodoc default.rc lesskeys.rc most-fun.txt
 }
-
-


fight! fight! fight!
Gontran
Comment 1 Pieter Van den Abeele (RETIRED) gentoo-dev 2002-04-25 03:31:35 UTC
Thnxs