You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sc...@apache.org on 2008/06/08 07:11:31 UTC

svn commit: r664442 - /httpd/httpd/trunk/server/Makefile.in

Author: sctemme
Date: Sat Jun  7 22:11:31 2008
New Revision: 664442

URL: http://svn.apache.org/viewvc?rev=664442&view=rev
Log:
No header files currently found in that dir, so the build fails.

Modified:
    httpd/httpd/trunk/server/Makefile.in

Modified: httpd/httpd/trunk/server/Makefile.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/Makefile.in?rev=664442&r1=664441&r2=664442&view=diff
==============================================================================
--- httpd/httpd/trunk/server/Makefile.in (original)
+++ httpd/httpd/trunk/server/Makefile.in Sat Jun  7 22:11:31 2008
@@ -30,7 +30,7 @@
 
 util.lo: test_char.h
 
-EXPORT_DIRS = $(top_srcdir)/include $(top_srcdir)/os/$(OS_DIR) $(top_srcdir)/modules/http
+EXPORT_DIRS = $(top_srcdir)/include $(top_srcdir)/os/$(OS_DIR)
 EXPORT_DIRS_APR = $(APR_INCLUDEDIR) $(APU_INCLUDEDIR)
 
 # If export_files is a dependency here, but we remove it during this stage,



Re: svn commit: r664442 - /httpd/httpd/trunk/server/Makefile.in

Posted by Sander Temme <sc...@apache.org>.
On Jun 8, 2008, at 12:35 AM, William A. Rowe, Jr. wrote:

> Very odd that this should be a fatal error, but thanks Sander for
> correcting it promply!

[sctemme@Legadema] server $ ls foobar
ls: foobar: No such file or directory
[sctemme@Legadema] server $ echo $?
1
[sctemme@Legadema] server $

... make sees the non-zero result and gives up.

S.

-- 
Sander Temme
sctemme@apache.org
PGP FP: 51B4 8727 466A 0BC3 69F4  B7B8 B2BE BC40 1529 24AF




Re: svn commit: r664442 - /httpd/httpd/trunk/server/Makefile.in

Posted by "William A. Rowe, Jr." <wr...@rowe-clan.net>.
sctemme@apache.org wrote:
> No header files currently found in that dir, so the build fails.
> 
> Modified:
>     httpd/httpd/trunk/server/Makefile.in
> 
> -EXPORT_DIRS = $(top_srcdir)/include $(top_srcdir)/os/$(OS_DIR) $(top_srcdir)/modules/http
> +EXPORT_DIRS = $(top_srcdir)/include $(top_srcdir)/os/$(OS_DIR)

Very odd that this should be a fatal error, but thanks Sander for
correcting it promply!

Bill