diff options
| author | Jack Nagel | 2015-03-08 20:14:46 -0400 |
|---|---|---|
| committer | Jack Nagel | 2015-03-08 20:15:25 -0400 |
| commit | 3bc26d890abb380644bf5e60565f19a039ab8811 (patch) | |
| tree | ebe2907d70016725972257dd910d2c9c023158cc /Library/Formula | |
| parent | bfe767296a872d30ba702f8acd24e5bb7087000c (diff) | |
| download | homebrew-3bc26d890abb380644bf5e60565f19a039ab8811.tar.bz2 | |
glib: partially revert 66c01269d742bd7ea5f0c8da23ce83256c6c6459
Fixes #37515.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/glib.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/glib.rb b/Library/Formula/glib.rb index 09b1a05ac..d67ce478f 100644 --- a/Library/Formula/glib.rb +++ b/Library/Formula/glib.rb @@ -75,12 +75,12 @@ class Glib < Formula if build.universal? buildpath.install resource("config.h.ed") - system "ed", "-s", "-", "config.h", "<config.h.ed" + system "ed -s - config.h <config.h.ed" end system "make" # the spawn-multithreaded tests require more open files - system "ulimit", "-n", "1024;", "make", "check" if build.include? "test" + system "ulimit -n 1024; make check" if build.with? "test" system "make", "install" # `pkg-config --libs glib-2.0` includes -lintl, and gettext itself does not |
