diff options
author | minskim <minskim> | 2007-04-27 19:31:08 +0000 |
---|---|---|
committer | minskim <minskim> | 2007-04-27 19:31:08 +0000 |
commit | 504d7ee9156e32f7ad93ff46193931c5183b28d2 (patch) | |
tree | abba6979c1db400032a0dce7edbf9d804ddac03c /misc | |
parent | 9c9dcfb9bfbdf6caf701cdc0234a9ca9c5ea9119 (diff) | |
download | pkgsrc-504d7ee9156e32f7ad93ff46193931c5183b28d2.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" |