summaryrefslogtreecommitdiff
path: root/graphics/ruby-graph/files/patch-install.rb
blob: 48e2d2ad877f336a354072205aaf29aca11fc5c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- 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