summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorPierre Le Marre <dev@wismill.eu>2023-05-13 05:30:11 +0200
committerRan Benita <ran@unusedvar.com>2023-05-13 22:05:23 +0300
commitfc664cf1cc8c1cccd6137134cf5018d8fc9b1ca5 (patch)
tree12fb8a7be614eb9e96854cbd0620bee269a2aeca /scripts
parent183761ac24544b355aaf362e62d05fa1c184baf8 (diff)
downloadxorg-lib-libxkbcommon-fc664cf1cc8c1cccd6137134cf5018d8fc9b1ca5.tar.gz
Improve documentation
- Add introduction to XKB - Embrace Doxygen features - More cross links
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/doxygen-wrapper7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/doxygen-wrapper b/scripts/doxygen-wrapper
index baa7b26..2c2edb5 100755
--- a/scripts/doxygen-wrapper
+++ b/scripts/doxygen-wrapper
@@ -5,4 +5,11 @@
DOXYGEN="$1"
DOXYFILE="$2"
ABS_TOP_SRCDIR="$3"
+# Set environment variables that are unset
+if [ -z "$DOXYGEN_WARN_AS_ERROR" ]
+then export DOXYGEN_WARN_AS_ERROR="NO"
+fi
+if [ -z "$DOXYGEN_QUIET" ]
+then export DOXYGEN_QUIET="YES"
+fi
cd "$ABS_TOP_SRCDIR" && exec "$DOXYGEN" "$DOXYFILE"