diff options
author | knu <knu@FreeBSD.org> | 2001-09-18 19:34:28 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2001-09-18 19:34:28 +0800 |
commit | bb8ac183c04a62e4656fa23fa9c24548eae56c99 (patch) | |
tree | d4f1e4b1f648b1404001daff4329913a314c1be3 /devel/ruby-metaruby/files | |
parent | 0997848776a0ef5996fe4d5f9e043f35e97c7b7c (diff) | |
download | freebsd-ports-gnome-bb8ac183c04a62e4656fa23fa9c24548eae56c99.tar.gz freebsd-ports-gnome-bb8ac183c04a62e4656fa23fa9c24548eae56c99.tar.zst freebsd-ports-gnome-bb8ac183c04a62e4656fa23fa9c24548eae56c99.zip |
Update to 0.7.
Diffstat (limited to 'devel/ruby-metaruby/files')
-rw-r--r-- | devel/ruby-metaruby/files/patch-extconf.rb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/devel/ruby-metaruby/files/patch-extconf.rb b/devel/ruby-metaruby/files/patch-extconf.rb new file mode 100644 index 000000000000..d7dcbad3f6c1 --- /dev/null +++ b/devel/ruby-metaruby/files/patch-extconf.rb @@ -0,0 +1,25 @@ +--- extconf.rb.orig Tue Sep 18 11:03:21 2001 ++++ extconf.rb Tue Sep 18 18:10:04 2001 +@@ -34,18 +34,18 @@ + f.puts + + f.puts "install::" +- f.puts "\t@mkdir $(DESTDIR)/Hollow $(DESTDIR)/lgram || true" ++ f.puts "\t@mkdir -p $(DESTDIR)/Hollow $(DESTDIR)/lgram" + FILES1.each {|fn1| + fn2 = fn1 +- f.puts "\tinstall --mode 644 #{fn2} $(DESTDIR)/#{fn2}" ++ f.puts "\tinstall -m 644 #{fn2} $(DESTDIR)/#{fn2}" + } + FILES2.each {|fn1| + fn2 = "Hollow/#{fn1}" +- f.puts "\tinstall --mode 644 #{fn2} $(DESTDIR)/#{fn2}" ++ f.puts "\tinstall -m 644 #{fn2} $(DESTDIR)/#{fn2}" + } + FILES3.each {|fn1| + fn2 = "lgram/#{fn1}" +- f.puts "\tinstall --mode 644 #{fn2} $(DESTDIR)/#{fn2}" ++ f.puts "\tinstall -m 644 #{fn2} $(DESTDIR)/#{fn2}" + } + } + |