summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpho <pho@pkgsrc.org>2015-02-11 07:49:51 +0000
committerpho <pho@pkgsrc.org>2015-02-11 07:49:51 +0000
commit3975a6a55c33ea79caca4256b92875eed586cd5b (patch)
treeb14e15c1c9fb0fb2b17fe0e65cb36c727d33f36c
parent0087b099c259e981838524951c6a0d5daa3d881b (diff)
downloadpkgsrc-3975a6a55c33ea79caca4256b92875eed586cd5b.tar.gz
Oops, I forgot to replace some of ${PKGNAME} with ${PKGNAME_NOREV}
-rw-r--r--lang/ghc7/bootstrap.mk16
1 files changed, 8 insertions, 8 deletions
diff --git a/lang/ghc7/bootstrap.mk b/lang/ghc7/bootstrap.mk
index 920d43d9265..cd32d8b7dc1 100644
--- a/lang/ghc7/bootstrap.mk
+++ b/lang/ghc7/bootstrap.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bootstrap.mk,v 1.19 2015/02/11 07:47:16 pho Exp $
+# $NetBSD: bootstrap.mk,v 1.20 2015/02/11 07:49:51 pho Exp $
# -----------------------------------------------------------------------------
# Select a bindist of bootstrapping compiler on a per-platform basis.
#
@@ -14,7 +14,7 @@
BOOT_ARCHIVE:= # empty
.if !empty(MACHINE_PLATFORM:MDarwin-*-powerpc) || make(distinfo)
-BOOT_ARCHIVE= ${PKGNAME}-boot-powerpc-apple-darwin.tar.xz
+BOOT_ARCHIVE= ${PKGNAME_NOREV}-boot-powerpc-apple-darwin.tar.xz
#DISTFILES+= ${BOOT_ARCHIVE}
# Existence of libelf makes LeadingUnderscore being "NO", which is
@@ -29,32 +29,32 @@ BOOT_ARCHIVE= ${PKGNAME_NOREV}-boot-i386-unknown-freebsd.tar.xz
.endif
.if !empty(MACHINE_PLATFORM:MNetBSD-*-i386) || make(distinfo)
-BOOT_ARCHIVE= ${PKGNAME}-boot-i386-unknown-netbsd.tar.xz
+BOOT_ARCHIVE= ${PKGNAME_NOREV}-boot-i386-unknown-netbsd.tar.xz
#DISTFILES+= ${BOOT_ARCHIVE}
.endif
.if !empty(MACHINE_PLATFORM:MNetBSD-*-x86_64) || make(distinfo)
-BOOT_ARCHIVE= ${PKGNAME}-boot-x86_64-unknown-netbsd.tar.xz
+BOOT_ARCHIVE= ${PKGNAME_NOREV}-boot-x86_64-unknown-netbsd.tar.xz
#DISTFILES+= ${BOOT_ARCHIVE}
.endif
.if !empty(MACHINE_PLATFORM:MLinux-*-x86_64) || make(distinfo)
-BOOT_ARCHIVE= ${PKGNAME}-boot-x86_64-unknown-linux.tar.xz
+BOOT_ARCHIVE= ${PKGNAME_NOREV}-boot-x86_64-unknown-linux.tar.xz
#DISTFILES+= ${BOOT_ARCHIVE}
.endif
.if !empty(MACHINE_PLATFORM:MSunOS-5.11-i386) || make(distinfo)
-BOOT_ARCHIVE= ${PKGNAME}-boot-i386-unknown-solaris2.tar.xz
+BOOT_ARCHIVE= ${PKGNAME_NOREV}-boot-i386-unknown-solaris2.tar.xz
#DISTFILES+= ${BOOT_ARCHIVE}
.endif
.if !empty(MACHINE_PLATFORM:MSunOS-5.11-x86_64) || make(distinfo)
-BOOT_ARCHIVE= ${PKGNAME}-boot-x86_64-unknown-solaris2.tar.xz
+BOOT_ARCHIVE= ${PKGNAME_NOREV}-boot-x86_64-unknown-solaris2.tar.xz
#DISTFILES+= ${BOOT_ARCHIVE}
.endif
.if empty(BOOT_ARCHIVE)
-BOOT_ARCHIVE= ${PKGNAME}-boot-unknown.tar.xz
+BOOT_ARCHIVE= ${PKGNAME_NOREV}-boot-unknown.tar.xz
PKG_FAIL_REASON+= "internal error: unsupported platform"
.endif