diff options
| author | Adam Vandenberg | 2014-10-18 07:57:17 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-10-18 07:57:17 -0700 |
| commit | 1eba57032852debcb71f5cab5423b085550b3873 (patch) | |
| tree | 8fd8cc0db32dc7b4d54a35989d338d13d7619b26 /Library | |
| parent | e6bc41dee76fe5410b026817a071075d04896177 (diff) | |
| download | homebrew-1eba57032852debcb71f5cab5423b085550b3873.tar.bz2 | |
emacs: use double quotes
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/emacs.rb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Formula/emacs.rb b/Library/Formula/emacs.rb index 522d96ca0..b8c1c1d1c 100644 --- a/Library/Formula/emacs.rb +++ b/Library/Formula/emacs.rb @@ -65,10 +65,10 @@ class Emacs < Formula end if build.include? "cocoa" and build.include? "japanese" end - depends_on 'pkg-config' => :build + depends_on "pkg-config" => :build depends_on :x11 if build.with? "x" depends_on "d-bus" => :optional - depends_on 'gnutls' => :optional + depends_on "gnutls" => :optional depends_on "librsvg" => :optional depends_on "imagemagick" => :optional depends_on "mailutils" => :optional @@ -100,10 +100,10 @@ class Emacs < Formula else args << "--without-dbus" end - if build.with? 'gnutls' - args << '--with-gnutls' + if build.with? "gnutls" + args << "--with-gnutls" else - args << '--without-gnutls' + args << "--without-gnutls" end args << "--with-rsvg" if build.with? "librsvg" args << "--with-imagemagick" if build.with? "imagemagick" @@ -123,7 +123,7 @@ class Emacs < Formula args << "--with-ns" << "--disable-ns-self-contained" system "./configure", *args system "make" - system "make install" + system "make", "install" prefix.install "nextstep/Emacs.app" # Don't cause ctags clash. @@ -140,7 +140,7 @@ class Emacs < Formula # These libs are not specified in xft's .pc. See: # https://trac.macports.org/browser/trunk/dports/editors/emacs/Portfile#L74 # https://github.com/Homebrew/homebrew/issues/8156 - ENV.append 'LDFLAGS', '-lfreetype -lfontconfig' + ENV.append "LDFLAGS", "-lfreetype -lfontconfig" args << "--with-x" args << "--with-gif=no" << "--with-tiff=no" << "--with-jpeg=no" else @@ -149,7 +149,7 @@ class Emacs < Formula system "./configure", *args system "make" - system "make install" + system "make", "install" # Don't cause ctags clash. do_not_install_ctags |
