Thread: What is a SBE?
View Single Post
  #42  
Old 2005-12-03, 06:29 PM
ffooky ffooky is offline
 
Join Date: Nov 2004
Re: What is a SBE?

I can't remember if a default OS X installation comes with a /usr/local directory but if not you need to run:
Code:
$ sudo mkdir /usr/local
and then:

Code:
$ sudo mkdir /usr/local/bin
Now you need to add this directory to your $PATH:

Code:
% echo 'PATH=$PATH:/usr/local/bin' >> ~/.bash_profile 
% source .bash_profile
(Two separate commands)

You can check to see if you've successfully added /usr/local/bin by running:

Code:
% echo $PATH
You should see it somewhere in the string of directories, separated by colons.

Now you can just add all the duplicated binaries from the bin folder within xACT.app, either by dragging them in via Finder or by running:
Code:
$ sudo cp <select and drag all of them here at once> /usr/local/bin
Everything *should* now be tickety-boo.

ff
__________________
Two tracks for a desert island:

Black Keys - I Got Mine
Tintern Abbey - Vacuum Cleaner
Reply With Quote Reply with Nested Quotes