pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/bmake



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Thu Jun 18 10:07:35 UTC 2020

Modified Files:
        pkgsrc/devel/bmake: Makefile

Log Message:
bmake: Fix match for bootstrap pdksh.

When bmake is built during bootstrap it's using a temporary prefix, so matching
against LOCALBASE doesn't work.


To generate a diff of this commit:
cvs rdiff -u -r1.77 -r1.78 pkgsrc/devel/bmake/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/bmake/Makefile
diff -u pkgsrc/devel/bmake/Makefile:1.77 pkgsrc/devel/bmake/Makefile:1.78
--- pkgsrc/devel/bmake/Makefile:1.77    Fri Jun 12 16:01:36 2020
+++ pkgsrc/devel/bmake/Makefile Thu Jun 18 10:07:35 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.77 2020/06/12 16:01:36 jperkin Exp $
+# $NetBSD: Makefile,v 1.78 2020/06/18 10:07:35 jperkin Exp $
 
 DISTNAME=      bmake-20200524
 PKGREVISION=   1
@@ -40,7 +40,7 @@ CONFIGURE_ARGS+=      --sysconfdir=${PKG_SYSC
 #
 .if ${OPSYS} == "SunOS" && exists(/usr/bin/bash)
 CONFIGURE_ARGS+=       --with-defshell=/usr/bin/bash
-.elif ${TOOLS_PLATFORM.sh} == "${LOCALBASE}/bin/pdksh"
+.elif ${TOOLS_PLATFORM.sh:M*/bin/pdksh}
 DEPENDS+=              pdksh-[0-9]*:../../shells/pdksh
 CONFIGURE_ARGS+=       --with-defshell=${PREFIX}/bin/pdksh
 .endif



Home | Main Index | Thread Index | Old Index