diff options
author | cjh <cjh@FreeBSD.org> | 2003-09-09 09:42:21 +0000 |
---|---|---|
committer | cjh <cjh@FreeBSD.org> | 2003-09-09 09:42:21 +0000 |
commit | 91cc2fd154712e9957066cf6de77d4c9bb4eb13c (patch) | |
tree | cfbf3ff7e3fcf9c0a16a2bebd8f7798e05829613 /korean | |
parent | 3da20e8c015ff8cadcab657e623b2d6a537793c7 (diff) | |
download | FreeBSD-ports-91cc2fd154712e9957066cf6de77d4c9bb4eb13c.zip FreeBSD-ports-91cc2fd154712e9957066cf6de77d4c9bb4eb13c.tar.gz |
Fix non-i386 builds proposed by the submitter.
I only tested on i386.
PR: ports/53471
Submitted by: Mark Linimon <linimon@lonesome.com>
Diffstat (limited to 'korean')
-rw-r--r-- | korean/mkisofs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/korean/mkisofs/Makefile b/korean/mkisofs/Makefile index 8c0d54b..5565905 100644 --- a/korean/mkisofs/Makefile +++ b/korean/mkisofs/Makefile @@ -23,10 +23,10 @@ MAN8= apple_driver.8 isoinfo.8 mkhybrid.8 mkisofs.8 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: |