You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ma...@apache.org on 2005/08/02 15:17:24 UTC

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

Author: martin
Date: Tue Aug  2 06:17:20 2005
New Revision: 226993

URL: http://svn.apache.org/viewcvs?rev=226993&view=rev
Log:
For generated files, strip off an absolute path

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

Modified: httpd/httpd/trunk/modules/ssl/Makefile.in
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/ssl/Makefile.in?rev=226993&r1=226992&r2=226993&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/Makefile.in (original)
+++ httpd/httpd/trunk/modules/ssl/Makefile.in Tue Aug  2 06:17:20 2005
@@ -26,11 +26,12 @@
 
 ssl_expr_scan.c: $(top_srcdir)/modules/ssl/ssl_expr_scan.l ssl_expr_parse.h
 	flex -Pssl_expr_yy -s -B $(top_srcdir)/modules/ssl/ssl_expr_scan.l
-	sed -e '/$$Header:/d' <lex.ssl_expr_yy.c >ssl_expr_scan.c && rm -f lex.ssl_expr_yy.c
+	sed -e '/$$Header:/d' -e "s|\"`pwd`/|\"|g" <lex.ssl_expr_yy.c >ssl_expr_scan.c && rm -f lex.ssl_expr_yy.c
 
 ssl_expr_parse.c ssl_expr_parse.h: $(top_srcdir)/modules/ssl/ssl_expr_parse.y
 	yacc -d $(top_srcdir)/modules/ssl/ssl_expr_parse.y
 	sed -e 's;yy;ssl_expr_yy;g' \
+	    -e "s|\"`pwd`/|\"|g" \
 	    -e '/#if defined(c_plusplus) || defined(__cplusplus)/,/#endif/d' \
 	    <y.tab.c >ssl_expr_parse.c && rm -f y.tab.c
 	sed -e 's;yy;ssl_expr_yy;g' \