mirror of
https://github.com/openharmony/third_party_libxkbcommon.git
synced 2026-07-18 09:14:40 -04:00
9 lines
275 B
Bash
9 lines
275 B
Bash
#!/bin/sh
|
|
# Run doxygen such that the working directory is the source root.
|
|
# This is needed for various reasons (e.g. relative references in md files).
|
|
# Do not use directly.
|
|
DOXYGEN="$1"
|
|
DOXYFILE="$2"
|
|
ABS_TOP_SRCDIR="$3"
|
|
cd "$ABS_TOP_SRCDIR" && exec "$DOXYGEN" "$DOXYFILE"
|