From 507722b144fda25a10bd2e080d48c436e2aaaab8 Mon Sep 17 00:00:00 2001 From: Michael T. Conigliaro Date: Thu, 22 Sep 2011 09:25:52 -0600 Subject: NSS: Remove unnecessary prefix on binaries Signed-off-by: Charlie Sharpsteen --- Library/Formula/nss.rb | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/Library/Formula/nss.rb b/Library/Formula/nss.rb index 2941aa437..199fc9846 100644 --- a/Library/Formula/nss.rb +++ b/Library/Formula/nss.rb @@ -28,8 +28,7 @@ class Nss < Formula bin.mkdir Dir['mozilla/dist/Darwin*/bin/*'].each do |file| - # Add 'nss-' prefix to prevent collisions with other binaries. - cp file, "#{bin}/nss-" + File.basename(file) + cp file, bin end include.mkdir @@ -48,13 +47,11 @@ class Nss < Formula end def test - # http://www.mozilla.org/projects/security/pki/nss/tools/certutil.html - password = "It's a secret to everyone." - + # See: http://www.mozilla.org/projects/security/pki/nss/tools/certutil.html mktemp do - File.open('passwd', 'w') {|f| f.write(password) } - system "nss-certutil -N -d #{Dir.getwd} -f passwd" - system "nss-certutil -L -d #{Dir.getwd}" + File.open('passwd', 'w') {|f| f.write("It's a secret to everyone.") } + system "certutil -N -d #{Dir.getwd} -f passwd" + system "certutil -L -d #{Dir.getwd}" end end end -- cgit v1.2.3