Hi- I was wondering if you guys would be interested in my patch to make rpm packages on LinuxPPC? on LinuxPPC rpm is stored in /bin/rpm not in /usr/bin/rpm. I discovered this a while back when i was trying to make a ppc rpm of the cvs tree for a friend. I changed the makefile to look for /usr/bin/rpm and then /bin/rpm. I just figgured out how to do a cvs diff and so i now have the patch if you guys want it. I am attaching it to this email. -- ---- Logan Hall
Index: abi/src/pkg/linux/Makefile =================================================================== RCS file: /cvsroot/abi/src/pkg/linux/Makefile,v retrieving revision 1.19 diff -u -w -r1.19 Makefile --- abi/src/pkg/linux/Makefile 1999/12/08 19:06:16 1.19 +++ abi/src/pkg/linux/Makefile 2000/01/24 21:59:28 @@ -54,7 +54,7 @@ ######################################################################## -RPM_LOC = $(shell [ -x /usr/bin/rpm ] && echo 1) +RPM_LOC = $(shell [ -x /usr/bin/rpm -o -x /bin/rpm ] && echo 1) ALIEN_LOC = $(shell [ -x /usr/bin/alien ] && echo 1) # If tgz is inside $ABI_DIST_TARGET
