aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-02-06 19:27:26 -0600
committerJack Nagel2013-02-06 19:27:26 -0600
commitb8eb18020c07dcb9dc1ac39eb5b6f4bbfe1afac9 (patch)
treef349e27601be7a64b7863f3a86964047111d4dfc /Library/Formula
parent0d8c88ac606b3dc1bb57ee7760622aa9480df54c (diff)
downloadhomebrew-b8eb18020c07dcb9dc1ac39eb5b6f4bbfe1afac9.tar.bz2
ruby: remove upstreamed patch
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ruby.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/Library/Formula/ruby.rb b/Library/Formula/ruby.rb
index c8fad4b6d..ac552535b 100644
--- a/Library/Formula/ruby.rb
+++ b/Library/Formula/ruby.rb
@@ -25,9 +25,6 @@ class Ruby < Formula
build 2326
end
- # https://github.com/ruby/ruby/commit/2741a598ff9e561c71eb39a57bb19c0a3205eaef
- def patches; DATA end
-
def install
system "autoconf" if build.head?
@@ -64,22 +61,3 @@ class Ruby < Formula
EOS
end
end
-
-__END__
-diff --git a/missing/setproctitle.c b/missing/setproctitle.c
-index 169ba8b..4dc6d03 100644
---- a/missing/setproctitle.c
-+++ b/missing/setproctitle.c
-@@ -48,6 +48,12 @@
- #endif
- #include <string.h>
-
-+#if defined(__APPLE__)
-+#include <crt_externs.h>
-+#undef environ
-+#define environ (*_NSGetEnviron())
-+#endif
-+
- #define SPT_NONE 0 /* don't use it at all */
- #define SPT_PSTAT 1 /* use pstat(PSTAT_SETCMD, ...) */
- #define SPT_REUSEARGV 2 /* cover argv with title information */