diff options
author | minskim <minskim@pkgsrc.org> | 2007-04-27 19:31:08 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2007-04-27 19:31:08 +0000 |
commit | fdf48b25cf7529d19d90455f33f75d3351b17149 (patch) | |
tree | abba6979c1db400032a0dce7edbf9d804ddac03c /misc | |
parent | 3a180b207945955c5957c069e62a4c607b81a138 (diff) | |
download | pkgsrc-fdf48b25cf7529d19d90455f33f75d3351b17149.tar.gz |
Make REPLACE_FILE_PAT more restrictive not to attempt to modify
non-ruby files. This makes the package build on Darwin.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/rubygems/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/rubygems/Makefile b/misc/rubygems/Makefile index eb0037eec57..5ca2b425010 100644 --- a/misc/rubygems/Makefile +++ b/misc/rubygems/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2007/04/23 03:21:04 minskim Exp $ +# $NetBSD: Makefile,v 1.8 2007/04/27 19:31:08 minskim Exp $ DISTNAME= rubygems-0.9.2 CATEGORIES= misc ruby @@ -13,7 +13,7 @@ RUBY_REQD= 1.8.3 USE_RUBY_SETUP= yes REPLACE_RUBY_DIRS= ${WRKSRC}/bin -REPLACE_FILE_PAT= * +REPLACE_FILE_PAT= [a-z]* .include "../../lang/ruby/modules.mk" .include "../../mk/bsd.pkg.mk" |