From 1b4dedc62e1fd4d43403458536842e4cdc79628b Mon Sep 17 00:00:00 2001 From: Clemens Ladisch Date: Tue, 4 Aug 2009 09:12:39 +0200 Subject: [PATCH] doc: fix handling of @top_srcdir@ The value of top_srcdir should be replaced in the config file, not in the makefile, so we have to escape it in the makefile. In the default case, the value of top_srcdir is ".." which, when used as a regular expression, is a little bit too inclusive. Signed-off-by: Clemens Ladisch --- doc/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index a5896a7e..2cc250bf 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -5,7 +5,7 @@ EXTRA_DIST=README.1st asoundrc.txt doxygen.cfg index.doxygen INCLUDES=-I$(top_srcdir)/include doc: - test -e doxygen.cfg || sed s:@top_srcdir@:..:g doxygen.cfg.in > doxygen.cfg + test -e doxygen.cfg || sed s:[@]top_srcdir[@]:..:g doxygen.cfg.in > doxygen.cfg doxygen doxygen.cfg doc-pack: doc -- 2.47.1