Re: [asterisk-users] Installing Asterisk to it's own directory

2010-11-20 Thread Gordon Henderson
On Fri, 19 Nov 2010, Jose P. Espinal wrote: Hi Stephen, That's what people do when building precompiled packages for certain distros (along with a few more things). I use to do the following when building packages (with a few more options): ./configure --prefix=/usr --sysconfdir=/etc

Re: [asterisk-users] Installing Asterisk to it's own directory

2010-11-20 Thread Stephen Brown
Thanks... I actually did a ./configure --prefix=/root/asterisk18 and ended up with this: r...@debian-squeeze:~/asterisk18# pwd /root/asterisk18 r...@debian-squeeze:~/asterisk18# ls -al total 32 drwxr-xr-x 8 root root 4096 Nov 19 18:09 . drwx-- 5 root root 4096 Nov 19 18:37 .. drwxr-xr-x 3

Re: [asterisk-users] Installing Asterisk to it's own directory

2010-11-20 Thread Jim Dickenson
What you did is what I would have done. That way the executables have their conf file location adjusted and everything will be inside the specified --prefix location. -- Jim Dickenson mailto:dicken...@cfmc.com CfMC http://www.cfmc.com/ On Nov 20, 2010, at 5:48 AM, Stephen Brown wrote:

Re: [asterisk-users] Installing Asterisk to it's own directory

2010-11-20 Thread Paul Belanger
On 10-11-19 04:56 PM, Stephen Brown wrote: I've never tried this before, and before I potentially break something I'd like to know if it's possible and how to implement it? $ mkdir -p ~/digium/asterisk/testing $ cd ~/digium/asterisk/testing $ svn co

[asterisk-users] Installing Asterisk to it's own directory

2010-11-19 Thread Stephen Brown
I'd like to start playing with 1.8, however I don't want to potentially damage anything on my existing 1.6.2 install on my production server. I'd like to test 1.8 against my existing configs leaving my 1.6.2 install untouched. Looking at the output of ./configure --help suggests that it's

Re: [asterisk-users] Installing Asterisk to it's own directory

2010-11-19 Thread Jose P. Espinal
Hi Stephen, That's what people do when building precompiled packages for certain distros (along with a few more things). I use to do the following when building packages (with a few more options): ./configure --prefix=/usr --sysconfdir=/etc make make install DESTDIR=/my/destination/directory