diff options
author | jperkin <jperkin@pkgsrc.org> | 2014-06-26 15:59:31 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2014-06-26 15:59:31 +0000 |
commit | ae400fa3f7eea8655171fe388acb55842d82cdec (patch) | |
tree | ed042c6ddb2ae66554638759098b72ae710e3936 /lang | |
parent | 59303d27eab771fbe96a4dea096ed8c6e12d9dce (diff) | |
download | pkgsrc-ae400fa3f7eea8655171fe388acb55842d82cdec.tar.gz |
Use gmake on Darwin, bmake doesn't like the codesign / POSTLINK bits.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/ruby18-base/Makefile | 7 | ||||
-rw-r--r-- | lang/ruby193-base/Makefile | 5 | ||||
-rw-r--r-- | lang/ruby21-base/Makefile | 5 |
3 files changed, 12 insertions, 5 deletions
diff --git a/lang/ruby18-base/Makefile b/lang/ruby18-base/Makefile index 21aa52060a4..a07726f54c9 100644 --- a/lang/ruby18-base/Makefile +++ b/lang/ruby18-base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.81 2014/03/16 17:54:31 taca Exp $ +# $NetBSD: Makefile,v 1.82 2014/06/26 15:59:31 jperkin Exp $ # DISTNAME= ${RUBY_DISTNAME} @@ -70,6 +70,11 @@ FILES_SUBST+= DATE=${DATE:Q} CONFIGURE_ARGS+= --program-suffix=${RUBY_SUFFIX:Q} .endif +# bmake doesn't like the codesign/POSTLINK constructs. +.if ${OPSYS} == "Darwin" +USE_TOOLS+= gmake +.endif + # # IRIX work around which should be fixed. # diff --git a/lang/ruby193-base/Makefile b/lang/ruby193-base/Makefile index 4f32aa874a3..1ed09d0280d 100644 --- a/lang/ruby193-base/Makefile +++ b/lang/ruby193-base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.42 2014/03/13 17:53:36 taca Exp $ +# $NetBSD: Makefile,v 1.43 2014/06/26 15:59:31 jperkin Exp $ # DISTNAME= ${RUBY_DISTNAME} @@ -51,7 +51,8 @@ CONFIGURE_ENV+= ac_cv_prog_PKG_CONFIG="" CONFIGURE_ENV+= ac_cv_func_getgrnam_r=no .endif -.if ${OPSYS} == "Cygwin" +# bmake doesn't like the codesign/POSTLINK constructs for Darwin. +.if ${OPSYS} == "Cygwin" || ${OPSYS} == "Darwin" USE_TOOLS+= gmake MAKE_FILE= GNUmakefile .endif diff --git a/lang/ruby21-base/Makefile b/lang/ruby21-base/Makefile index aa28e79c55b..376993ad5e6 100644 --- a/lang/ruby21-base/Makefile +++ b/lang/ruby21-base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2014/05/21 03:19:57 taca Exp $ +# $NetBSD: Makefile,v 1.5 2014/06/26 16:56:11 jperkin Exp $ # DISTNAME= ${RUBY_DISTNAME} @@ -50,7 +50,8 @@ CONFIGURE_ENV+= ac_cv_prog_PKG_CONFIG="" CONFIGURE_ENV+= ac_cv_func_getgrnam_r=no .endif -.if ${OPSYS} == "Cygwin" +# bmake doesn't like the codesign/POSTLINK constructs for Darwin. +.if ${OPSYS} == "Cygwin" || ${OPSYS} == "Darwin" USE_TOOLS+= gmake MAKE_FILE= GNUmakefile .endif |