aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2023-04-28 11:22:26 +0100
committerJonathan Wakely <jwakely@redhat.com>2023-05-03 13:25:06 +0100
commit7a439a08844fb1a28ec0af03b58fea762238b204 (patch)
tree921d5099d2829d9d057faabdf47a2fb41d0a4a02
parenta97d3aa16a8d4b2afe1970d3fb69504166c3bd4a (diff)
downloadgcc-7a439a08844fb1a28ec0af03b58fea762238b204.zip
gcc-7a439a08844fb1a28ec0af03b58fea762238b204.tar.gz
gcc-7a439a08844fb1a28ec0af03b58fea762238b204.tar.bz2
libstdc++: Strip absolute paths from files shown in Doxygen docs
This avoids showing absolute paths from the expansion of @srcdir@/libsupc++/ in the doxygen File List view. libstdc++-v3/ChangeLog: * doc/doxygen/user.cfg.in (STRIP_FROM_PATH): Remove prefixes from header paths. (cherry picked from commit 975e8e836ead0e9055a125a2a23463db5d847cb3)
-rw-r--r--libstdc++-v3/doc/doxygen/user.cfg.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/libstdc++-v3/doc/doxygen/user.cfg.in b/libstdc++-v3/doc/doxygen/user.cfg.in
index 7ac516a..bdff43c 100644
--- a/libstdc++-v3/doc/doxygen/user.cfg.in
+++ b/libstdc++-v3/doc/doxygen/user.cfg.in
@@ -152,7 +152,7 @@ FULL_PATH_NAMES = NO
# will be relative from the directory where doxygen is started.
# This tag requires that the tag FULL_PATH_NAMES is set to YES.
-STRIP_FROM_PATH =
+STRIP_FROM_PATH = @srcdir@/doc/ @srcdir@/libsupc++/ include/
# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
# path mentioned in the documentation of a class, which tells the reader which
@@ -837,6 +837,7 @@ WARN_LOGFILE =
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched.
+# N.B. update STRIP_FROM_PATH to sanitize paths outside the build tree.
INPUT = @srcdir@/doc/doxygen/doxygroups.cc \
@srcdir@/libsupc++/compare \
@srcdir@/libsupc++/cxxabi.h \