From 521ca59f1551b2cffed35e386c5cd487afd71387 Mon Sep 17 00:00:00 2001 From: Stephan Witt Date: Mon, 24 Jun 2024 07:32:08 +0200 Subject: [PATCH] Add Qt binary directory to PATH to locate qmake utility --- development/LyX-Mac-binary-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development/LyX-Mac-binary-release.sh b/development/LyX-Mac-binary-release.sh index 179ed5db9a..c68890eb3f 100644 --- a/development/LyX-Mac-binary-release.sh +++ b/development/LyX-Mac-binary-release.sh @@ -716,7 +716,7 @@ build_lyx() { echo CPPFLAGS="${CPPFLAGS}" export CPPFLAGS echo CONFIGURE_OPTIONS="${LyXConfigureOptions}" ${QtInstallDir:+"--with-qt-dir=${QtInstallDir}"} - export PATH="${QtInstallDir}/libexec:$PATH" + export PATH="${QtInstallDir}/bin:${QtInstallDir}/libexec:$PATH" "${LyxSourceDir}/configure"\ --prefix="${LyxAppPrefix}" --with-version-suffix="-${LyXVersionSuffix}"\ ${QtInstallDir:+"--with-qt-dir=${QtInstallDir}"} \