Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Jun 2003 18:58:06 -0500 (CDT)
From:      Mark Linimon <linimon@lonesome.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/53471: [patch][non-maintainer] fix non-i386 builds for korean/mkisofs
Message-ID:  <200306182358.h5INw6fJ053396@lonesome.lonesome.com>
Resent-Message-ID: <200306190000.h5J00S2J095107@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>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@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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200306182358.h5INw6fJ053396>