Okay see if you can see what I am doing wrong? Looking at the timestamp [root at ns3 sbin]# ls -la /usr/local/sbin/dovecot -rwxr-xr-x 1 root root 471186 Nov 13 18:25 /usr/local/sbin/dovecot rebuilding [root at ns3 sbin]# /root/dovecot-0.99.11/configure --sysconfdir=/etc --localstatedir=/var ...... [root at ns3 sbin]# make ...... [root at ns3 sbin]# sudo make install .... Looking at the timestamp [root at ns3 sbin]# ls -la /usr/local/sbin/dovecot -rwxr-xr-x 1 root root 471186 Nov 17 13:35 /usr/local/sbin/dovecot The file was updated! [root at ns3 dovecot-0.99.11]# /usr/local/sbin/dovecot Fatal: Can't open configuration file /usr/local/etc/dovecot.conf: No such file or directory Any ideas on why it is looking in /usr/local? Thanks Clinton Hitcents.com Tel: (270) 796-5063 ext 105# Fax: (270) 796-3195 Cell: (270) 996-1122 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://dovecot.org/pipermail/dovecot/attachments/20041117/44d86ae4/attachment-0003.html>
Clinton Mills wrote:> Okay see if you can see what I am doing wrong?...snip...> > > *Any ideas on why it is looking in /usr/local?* > > * * > > *Thanks* >Clinton, I'd suggest doing a 'make clean' before re-running configure. configure caches certain information, and there may have been some parts of the source tree that weren't updated by the re-running of configure and thus not re-compiled (as it was determined that those portions didn't require a recompile) ... using 'make clean' will wipe out all the compiled objects in the source tree and basically give you a clean slate to start with. if you still have problems you can try 'make distclean' which basically puts the source tree into a state that it was in when you untarred it. hope this helps alan