diff options
author | wiz <wiz@pkgsrc.org> | 2002-10-20 00:39:52 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2002-10-20 00:39:52 +0000 |
commit | 6b6976ad528e96d7d6b76a279767081eb9feda50 (patch) | |
tree | 33940889b966c5fcf2ad46d06e0fdeab7e4203ad /lang | |
parent | a161db07119e9c278254ee4a055b94e4078422d7 (diff) | |
download | pkgsrc-6b6976ad528e96d7d6b76a279767081eb9feda50.tar.gz |
Pass MAKE_ENV to MAKE (two places, one of them from PR 18720).
Fix typo in IGNORE message (also from PR 18720).
Diffstat (limited to 'lang')
-rw-r--r-- | lang/ruby-base/Makefile.common | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/ruby-base/Makefile.common b/lang/ruby-base/Makefile.common index 74bcc905434..f915880564e 100644 --- a/lang/ruby-base/Makefile.common +++ b/lang/ruby-base/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.8 2002/06/09 11:29:53 taca Exp $ +# $NetBSD: Makefile.common,v 1.9 2002/10/20 00:39:52 wiz Exp $ # FreeBSD: ports/Mk/bsd.ruby.mk,v 1.11 2000/11/16 17:59:40 knu Exp # Makefile.common: ruby common makefile, based on FreeBSD's bsd.ruby.mk. @@ -162,7 +162,7 @@ do-build: ruby-extconf-build ruby-extconf-build: .for d in ${RUBY_EXTCONF_SUBDIRS} @${ECHO_MSG} "===> Building ${d}" - @cd ${WRKSRC}/${d}; ${SETENV} ${MAKE} ${ALL_TARGET} + @cd ${WRKSRC}/${d}; ${SETENV} ${MAKE_ENV} ${MAKE} ${ALL_TARGET} .endfor .endif @@ -172,7 +172,7 @@ do-install: ruby-extconf-install ruby-extconf-install: .for d in ${RUBY_EXTCONF_SUBDIRS} @${ECHO_MSG} "===> Installing ${d}" - @cd ${WRKSRC}/${d}; ${SETENV} ${MAKE} ${INSTALL_TARGET} + @cd ${WRKSRC}/${d}; ${SETENV} ${MAKE_ENV} ${MAKE} ${INSTALL_TARGET} .endfor .endif @@ -242,7 +242,7 @@ _RUBY_PROVIDED!= case `expr ${_RUBY_VERMAJOR} ">" ${_RUBY_REQMAJOR}` in \ esac ;; \ esac; ${ECHO} "no" .if ${_RUBY_PROVIDED} == "no" -IGNORE+= "This package require ruby ${RUBY_REQD} or later." +IGNORE+= "This package requires ruby ${RUBY_REQD} or later." .endif .else RUBY_REQD?= ${RUBY_VERSION} |