diff options
author | obache <obache@pkgsrc.org> | 2014-02-05 06:38:05 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2014-02-05 06:38:05 +0000 |
commit | 06c9e90339b3d53f9bce3fde5e74a111f621c4cc (patch) | |
tree | 831dbab586d46c048a4494f1f4443e16564e8a0c /lang/ghc7 | |
parent | 7d138059f2475297e3925f1949ccf687fe71f7bd (diff) | |
download | pkgsrc-06c9e90339b3d53f9bce3fde5e74a111f621c4cc.tar.gz |
fixes BOOT_ARCHIVE name for bootstrap target (PKGNAME_NOREV is not defined yet).
Diffstat (limited to 'lang/ghc7')
-rw-r--r-- | lang/ghc7/bootstrap.mk | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lang/ghc7/bootstrap.mk b/lang/ghc7/bootstrap.mk index b3b229fc680..3796216b737 100644 --- a/lang/ghc7/bootstrap.mk +++ b/lang/ghc7/bootstrap.mk @@ -1,4 +1,4 @@ -# $NetBSD: bootstrap.mk,v 1.8 2014/02/05 06:24:27 obache Exp $ +# $NetBSD: bootstrap.mk,v 1.9 2014/02/05 06:38:05 obache Exp $ # ----------------------------------------------------------------------------- # Select a bindist of bootstrapping compiler based on a per-platform # basis. @@ -12,29 +12,29 @@ # .include "../../mk/bsd.prefs.mk" .if ${MACHINE_ARCH} == "i386" && ${OPSYS} == "FreeBSD" -BOOT_ARCHIVE= ${PKGNAME_NOREV}-boot-i386-unknown-freebsd.tar.xz +BOOT_ARCHIVE:= ${PKGNAME}-boot-i386-unknown-freebsd.tar.xz .elif ${MACHINE_ARCH} == "i386" && ${OPSYS} == "NetBSD" -BOOT_ARCHIVE= ${PKGNAME_NOREV}-boot-i386-unknown-netbsd.tar.xz +BOOT_ARCHIVE:= ${PKGNAME}-boot-i386-unknown-netbsd.tar.xz .elif ${MACHINE_ARCH} == "powerpc" && ${OPSYS} == "Darwin" -BOOT_ARCHIVE= ${PKGNAME_NOREV}-boot-powerpc-apple-darwin.tar.xz +BOOT_ARCHIVE:= ${PKGNAME_NOREV}-boot-powerpc-apple-darwin.tar.xz # Existence of libelf makes LeadingUnderscore being "NO", which is # incorrect for this platform. See ${WRKSRC}/aclocal.m4 # (FP_LEADING_UNDERSCORE) CONFLICTS+= libelf-[0-9]* .elif ${MACHINE_ARCH} == "x86_64" && ${OPSYS} == "Linux" -BOOT_ARCHIVE= ${PKGNAME_NOREV}-boot-x86_64-unknown-linux.tar.xz +BOOT_ARCHIVE:= ${PKGNAME}-boot-x86_64-unknown-linux.tar.xz .elif ${MACHINE_ARCH} == "x86_64" && ${OPSYS} == "NetBSD" -BOOT_ARCHIVE= ${PKGNAME_NOREV}-boot-x86_64-unknown-netbsd.tar.xz +BOOT_ARCHIVE:= ${PKGNAME}-boot-x86_64-unknown-netbsd.tar.xz .elif !empty(MACHINE_PLATFORM:MSunOS-5.11-i386) -BOOT_ARCHIVE= ${PKGNAME_NOREV}-boot-i386-unknown-solaris2.tar.gz +BOOT_ARCHIVE:= ${PKGNAME}-boot-i386-unknown-solaris2.tar.gz .elif !empty(MACHINE_PLATFORM:MSunOS-5.11-x86_64) -BOOT_ARCHIVE= ${PKGNAME_NOREV}-boot-x86_64-unknown-solaris2.tar.xz +BOOT_ARCHIVE:= ${PKGNAME}-boot-x86_64-unknown-solaris2.tar.xz .else PKG_FAIL_REASON+= "internal error: unsupported platform" |