diff options
author | taca <taca@pkgsrc.org> | 2004-12-04 16:07:01 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2004-12-04 16:07:01 +0000 |
commit | 549edd3dc6dd7cdab980d50b375f9d3e7b485857 (patch) | |
tree | 2f757da04d53dbf27aca11519cea530a99c5ebbc /textproc | |
parent | eedc8c0aafa4e5a4a28594b622213f897fb7cebf (diff) | |
download | pkgsrc-549edd3dc6dd7cdab980d50b375f9d3e7b485857.tar.gz |
Change method to create RUBY_RD_LIST as rubyversion.mk's change, avoiding
use of external command, sed(1).
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/ruby-rdtool/rdversion.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/textproc/ruby-rdtool/rdversion.mk b/textproc/ruby-rdtool/rdversion.mk index 2748a5f8199..70fb0e3c895 100644 --- a/textproc/ruby-rdtool/rdversion.mk +++ b/textproc/ruby-rdtool/rdversion.mk @@ -1,4 +1,4 @@ -# $NetBSD: rdversion.mk,v 1.3 2004/12/04 15:04:53 taca Exp $ +# $NetBSD: rdversion.mk,v 1.4 2004/12/04 16:07:01 taca Exp $ # .ifndef _RD_VERSION_MK @@ -11,6 +11,5 @@ RUBY_RD_VERSION = 0.6.14 RUBY_RD_REQD= 0.6.14 # create string for dependency list -RUBY_RD_LIST!= ${ECHO} ${RUBY_VERSION_LIST:S/^/ruby/g:S/$/-rdtool/} | \ - ${SED} -e 's| |,|g' +RUBY_RD_LIST= ${RUBY_VERSION_LIST:C/([1-9][0-9]*)/ruby&-rdtool/g} .endif |