aboutsummaryrefslogtreecommitdiff
path: root/build-homebrew-formula.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-07-12 12:27:57 -0400
committerRob Austein <sra@hactrn.net>2016-07-12 12:27:57 -0400
commit6bb5cea6d3e8bb59867e7730db433448fbe50de7 (patch)
tree0cc287033497c22fb860e02e087315a1055e7699 /build-homebrew-formula.py
parent9003788fd58f4a720181196c9a366abb67054073 (diff)
Move executables from $prefix/sbin to $prefix/bin.
Diffstat (limited to 'build-homebrew-formula.py')
-rwxr-xr-xbuild-homebrew-formula.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/build-homebrew-formula.py b/build-homebrew-formula.py
index 007768f..cbaa35c 100755
--- a/build-homebrew-formula.py
+++ b/build-homebrew-formula.py
@@ -66,16 +66,16 @@ class CryptechAlpha < Formula
# Install the Python scripts, then replace them with stubs which
# set PYTHONPATH before calling the real scripts.
- sbin.install "sw/stm32/projects/hsm/cryptech_upload"
- sbin.install "sw/stm32/projects/hsm/cryptech_probe"
- sbin.install "sw/stm32/projects/hsm/cryptech_miniterm"
- sbin.env_script_all_files(libexec/"sbin", :PYTHONPATH => ENV["PYTHONPATH"])
+ bin.install "sw/stm32/projects/hsm/cryptech_upload"
+ bin.install "sw/stm32/projects/hsm/cryptech_probe"
+ bin.install "sw/stm32/projects/hsm/cryptech_miniterm"
+ bin.env_script_all_files(libexec/"bin", :PYTHONPATH => ENV["PYTHONPATH"])
# Install other (non-Python) stuff, then we are done.
share.install "cryptech-alpha-firmware.tar.gz"
lib.install "sw/pkcs11/libpkcs11.dylib"
- sbin.install "sw/pkcs11/p11util"
+ bin.install "sw/pkcs11/p11util"
end
end