xfce.xfce4-dev-tools: Allow skipping xdt-autogen

This is useful since Xfce likely starts porting stuff to meson
but can still need xdt-csource for ui files.
This commit is contained in:
Bobby Rong 2024-04-09 22:52:18 +08:00
parent ff0dbd9426
commit f77029273a
No known key found for this signature in database
1 changed files with 3 additions and 1 deletions

View File

@ -9,4 +9,6 @@ xdtAutogenPhase() {
NOCONFIGURE=1 xdt-autogen
}
preConfigurePhases+=(xdtAutogenPhase)
if [ -z "${dontUseXdtAutogenPhase-}" ]; then
preConfigurePhases+=(xdtAutogenPhase)
fi