summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Makefile.housekeeping5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping
index ed4ba51d..78b4f078 100644
--- a/src/Makefile.housekeeping
+++ b/src/Makefile.housekeeping
@@ -425,7 +425,10 @@ $(BIN)/%.rebuild :
# Documentation
#
$(BIN)/doxygen.cfg : doxygen.cfg $(MAKEDEPS)
- $(PERL) -pe 's{\@SRCDIRS\@}{$(SRCDIRS)}; s{\@BIN\@}{$(BIN)};' $< > $@
+ $(PERL) -pe 's{\@SRCDIRS\@}{$(SRCDIRS)}; ' \
+ -e 's{\@BIN\@}{$(BIN)}; ' \
+ -e 's{\@ARCH\@}{$(ARCH)}; ' \
+ $< > $@
$(BIN)/doc : $(BIN)/doxygen.cfg
$(DOXYGEN) $<