summaryrefslogtreecommitdiff
path: root/graphics/ruby-graph/files/patch-install.rb
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2001-10-27 12:02:31 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2001-10-27 12:02:31 +0000
commite3d2c592b37f10fe219dce160c19c01d32e69790 (patch)
tree049b2fd07a050f34a881a9c47fba8ee1c126c1bf /graphics/ruby-graph/files/patch-install.rb
parentUpdate to 0.0.5. (diff)
Update to 0.1.4.
Diffstat (limited to 'graphics/ruby-graph/files/patch-install.rb')
-rw-r--r--graphics/ruby-graph/files/patch-install.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/graphics/ruby-graph/files/patch-install.rb b/graphics/ruby-graph/files/patch-install.rb
deleted file mode 100644
index 48e2d2ad877f..000000000000
--- a/graphics/ruby-graph/files/patch-install.rb
+++ /dev/null
@@ -1,16 +0,0 @@
---- install.rb.orig Tue Oct 23 23:42:01 2001
-+++ install.rb Wed Oct 24 00:52:40 2001
-@@ -18,12 +18,11 @@
- def install
- begin
- File.makedirs( DESTDIR )
-- Dir.chdir(SRC_BASE) do
-+ Dir.chdir(SRC_BASE)
- Find.find(SRC) do |file|
- dst = File.join( INSTDIR, file )
- File.install(file, dst, 0644, true) if file =~ /.rb$/
- end
-- end
- rescue
- puts $!
- end