ports/53471: [patch][non-maintainer] fix non-i386 builds for korean/mkisofs

Mark Linimon linimon at lonesome.com
Thu Jun 19 00:00:30 UTC 2003


>Number:         53471
>Category:       ports
>Synopsis:       [patch][non-maintainer] fix non-i386 builds for korean/mkisofs
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jun 18 17:00:28 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator:     Mark Linimon
>Release:        FreeBSD-4.7
>Organization:
FreeBSD
>Environment:
System: FreeBSD lonesome.lonesome.com 4.7-STABLE FreeBSD 4.7-STABLE #0: Fri Nov 8 23:46:29 CST 2002 root at lonesome.lonesome.com:/usr/src/sys/compile/MULTIMEDIA i386
>Description:
	The logic in the Makefile assumes that the port is being
	made either on an i386 or an alpha.  This patch (only
	tested on i386 due to my lack of access to other machines)
	attempts to fix this.

	Also note, this is an older version of mkisofs (v1 as
	opposed to v2 in sysutils/mkisofs).
>How-To-Repeat:
	make install (sparc, ia64)
>Fix:

--- mkisofs/Makefile.dist	Mon Mar 10 16:59:00 2003
+++ mkisofs/Makefile	Wed Jun 18 18:38:27 2003
@@ -23,10 +23,10 @@
 USE_GMAKE=	yes
 MAKE_ENV=	COPTX="-DBSD_SCSI_SENSE_BUG"
 
-.if ${MACHINE_ARCH} == "alpha"
+.if ${MACHINE_ARCH} != "i386"
 post-extract:
 	${LN} -s ${WRKSRC}/RULES/i386-freebsd-cc.rul \
-		${WRKSRC}/RULES/alpha-freebsd-cc.rul
+		${WRKSRC}/RULES/${MACHINE_ARCH}-freebsd-cc.rul
 .endif
 
 post-build:
>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list