From 5f4fe8da2fccba461aa544c0182cb23c3a80daf4 Mon Sep 17 00:00:00 2001 From: Rainer Jung Date: Thu, 30 Sep 2010 13:37:34 +0000 Subject: [PATCH] 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. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1003061 13f79535-47bb-0310-9956-ffa450edef68 --- modules/ssl/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ssl/Makefile.in b/modules/ssl/Makefile.in index efb721582b..e8a88876d0 100644 --- a/modules/ssl/Makefile.in +++ b/modules/ssl/Makefile.in @@ -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 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 -- 2.40.0