You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2010/09/30 15:37:34 UTC

svn commit: r1003061 - /httpd/httpd/trunk/modules/ssl/Makefile.in

Author: rjung
Date: Thu Sep 30 13:37:34 2010
New Revision: 1003061

URL: http://svn.apache.org/viewvc?rev=1003061&view=rev
Log:
Fix flex and bison usage when building out of tree.

Usually these make targets are not executed because
buildconf fixes the timestamps accordingly.

But in case people want to experiment with the files
it's nice to still support out of tree build.

Modified:
    httpd/httpd/trunk/modules/ssl/Makefile.in

Modified: httpd/httpd/trunk/modules/ssl/Makefile.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/Makefile.in?rev=1003061&r1=1003060&r2=1003061&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/Makefile.in (original)
+++ httpd/httpd/trunk/modules/ssl/Makefile.in Thu Sep 30 13:37:34 2010
@@ -25,13 +25,13 @@ include $(top_srcdir)/build/special.mk
 #
 
 ssl_expr_scan.c: $(top_srcdir)/modules/ssl/ssl_expr_scan.l ssl_expr_parse.h
-	flex -Pssl_expr_yy -o ssl_expr_scan.c ssl_expr_scan.l
+	flex -Pssl_expr_yy -o ssl_expr_scan.c $(top_srcdir)/ssl_expr_scan.l
 	mv ssl_expr_scan.c ssl_expr_scan.c.tmp
 	sed -e "s|\"`pwd`/|\"|g" <ssl_expr_scan.c.tmp >ssl_expr_scan.c
 	rm -f ssl_expr_scan.c.tmp
 
 ssl_expr_parse.c ssl_expr_parse.h: $(top_srcdir)/modules/ssl/ssl_expr_parse.y
-	bison -pssl_expr_yy --defines=ssl_expr_parse.h -o ssl_expr_parse.c ssl_expr_parse.y
+	bison -pssl_expr_yy --defines=ssl_expr_parse.h -o ssl_expr_parse.c $(top_srcdir)/modules/ssl/ssl_expr_parse.y
 	mv ssl_expr_parse.c ssl_expr_parse.c.tmp
 	sed -e "s|\"`pwd`/|\"|g" < ssl_expr_parse.c.tmp > ssl_expr_parse.c
 	rm -f ssl_expr_parse.c.tmp