Warning messages while build Apache server

Posted by GoinOff on Server Fault See other posts from Server Fault or by GoinOff
Published on 2013-10-31T15:41:32Z Indexed on 2013/10/31 15:57 UTC
Read the original article Hit count: 278

Filed under:
|
|
|
|

I am building Apache server 2.4.6 from source and am not sure about a few warning messages I received during the rpm build process. The build completes OK and everything seems fine..BTW, this is on CentOS 5.5...

During the make process:

/home/johnm/dev/project1/install/linux/BUILD/httpd-2.4.6/srclib/apr/libtool --silent --mode=install install mod_authn_file.la /home/johnm/dev/project1/install/linux/tmp/usr/local/apache2/modules/

libtool: install: warning: remember to run `libtool --finish /usr/local/apache2/modules'

What is this warning message about?? remember to run libtool --finish ??

Also, I see this:

libtool: install: warning: `/home/johnm/dev/project1/install/linux/BUILD/httpd-2.4.6/srclib/apr-util/libaprutil-1.la' has not been installed in `/usr/local/apache2/lib'

I am building Apache in a temp directory but libtools seems to be looking in the wrong place (/usr/local/apache2/lib instead of /home/johnm/dev/project1/install/linux/tmp/usr/local/apache2/lib). This seems like something I can blow off??

In my specfile I set DESTDIR to /home/johnm/dev/project1/install/linux/tmp where the install files are placed:

%install
export DESTDIR=%{buildroot}
make install

Both messages appear numerous times during the make process. When I install the rpm on the system, everything appears to work without problems..Thinking I can ignore these messages??? or am I missing something important??

© Server Fault or respective owner

Related posts about apache2

Related posts about centos5