diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-09-18 11:34:28 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-09-18 11:34:28 +0000 |
commit | eafd29cba751317e9d9bb468826a01e9c8717690 (patch) | |
tree | 527b0d5bbdc24079a61037b93cb99e03229b0b5d /devel/ruby-metaruby/files | |
parent | c8d4b2f7c912d744ae0b4f73fb2363e9103a0d0a (diff) | |
download | ports-eafd29cba751317e9d9bb468826a01e9c8717690.tar.gz ports-eafd29cba751317e9d9bb468826a01e9c8717690.zip |
Notes
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}" + } + } + |