diff options
| author | Jack Nagel | 2014-08-24 20:20:49 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-08-24 20:20:49 -0500 |
| commit | 5d43958d2f277f2ab9be7293a90930edb960d485 (patch) | |
| tree | 5d9f813e5946f88006144e9b44590ff559a847cd /Library/Formula/libgcrypt.rb | |
| parent | 688f061cc9b9dc1ad77a512a4ce32cdb9d4c5cef (diff) | |
| download | homebrew-5d43958d2f277f2ab9be7293a90930edb960d485.tar.bz2 | |
Avoid conditionally defined resources
Resources are downloaded on-demand, so we can always define them and
avoid the headaches that come with conditional definitions.
Diffstat (limited to 'Library/Formula/libgcrypt.rb')
| -rw-r--r-- | Library/Formula/libgcrypt.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/libgcrypt.rb b/Library/Formula/libgcrypt.rb index 3a831a4c1..1a6690183 100644 --- a/Library/Formula/libgcrypt.rb +++ b/Library/Formula/libgcrypt.rb @@ -21,7 +21,7 @@ class Libgcrypt < Formula url "http://trac.macports.org/export/113198/trunk/dports/devel/libgcrypt/files/config.h.ed" version "113198" sha1 "136f636673b5c9d040f8a55f59b430b0f1c97d7a" - end if build.universal? + end def install ENV.universal_binary if build.universal? |
