aboutsummaryrefslogtreecommitdiffstats
path: root/devel/ruby-metaruby/files
diff options
context:
space:
mode:
authorknu <knu@FreeBSD.org>2001-09-18 19:34:28 +0800
committerknu <knu@FreeBSD.org>2001-09-18 19:34:28 +0800
commitbb8ac183c04a62e4656fa23fa9c24548eae56c99 (patch)
treed4f1e4b1f648b1404001daff4329913a314c1be3 /devel/ruby-metaruby/files
parent0997848776a0ef5996fe4d5f9e043f35e97c7b7c (diff)
downloadfreebsd-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.rb25
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}"
+ }
+ }
+