diff options
author | Florian Frank <flori@ping.de> | 2009-10-21 12:38:25 +0200 |
---|---|---|
committer | Florian Frank <flori@ping.de> | 2009-10-21 12:43:10 +0200 |
commit | f599e6609b42e15d8514332eeca4c31fda1c09c5 (patch) | |
tree | dec000c6ac8976d59b748ff2c29adfcfb6915de7 | |
parent | f5ff4bdc724a85516e50d6439bfd08ed71608953 (diff) | |
download | json-f599e6609b42e15d8514332eeca4c31fda1c09c5.tar.gz |
ignore .nfs.* files
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Rakefile | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,3 +1,4 @@ .*.sw[pon] coverage pkg +.nfs.* @@ -18,7 +18,7 @@ include Config MAKE = ENV['MAKE'] || %w[gmake make].find { |c| system(c, '-v') } PKG_NAME = 'json' PKG_VERSION = File.read('VERSION').chomp -PKG_FILES = FileList["**/*"].exclude(/CVS|pkg|tmp|coverage|Makefile/).exclude(/\.(so|bundle|o|#{CONFIG['DLEXT']})$/) +PKG_FILES = FileList["**/*"].exclude(/CVS|pkg|tmp|coverage|Makefile|\.nfs\./).exclude(/\.(so|bundle|o|#{CONFIG['DLEXT']})$/) EXT_ROOT_DIR = 'ext/json/ext' EXT_PARSER_DIR = "#{EXT_ROOT_DIR}/parser" EXT_PARSER_DL = "#{EXT_ROOT_DIR}/parser.#{CONFIG['DLEXT']}" |