Skip to content

Commit

Permalink
Disable updates in outdated buildscripts
Browse files Browse the repository at this point in the history
  • Loading branch information
AlienCowEatCake committed Sep 8, 2024
1 parent 3e58b24 commit 3e0561e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion buildscripts/linux_qt4.8_gcc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cd "$(dirname $0)"/..
rm -rf "${BUILDDIR}"
mkdir -p "${BUILDDIR}"
cd "${BUILDDIR}"
${CMD_QMAKE} -r CONFIG+="release" CONFIG+="use_static_qico" CONFIG+="enable_librsvg enable_j40" CONFIG+="enable_update_checking" "../${PROJECT}.pro"
${CMD_QMAKE} -r CONFIG+="release" CONFIG+="use_static_qico" CONFIG+="enable_librsvg enable_j40" "../${PROJECT}.pro"
make -j$(getconf _NPROCESSORS_ONLN)
strip --strip-all "${APP_PATH}/${PROJECT}"
cp -a "${APP_PATH}/${PROJECT}" ../"${PROJECT}_${SUFFIX_FULL}.elf"
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/linux_qt5.6_gcc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cd "$(dirname $0)"/..
rm -rf "${BUILDDIR}"
mkdir -p "${BUILDDIR}"
cd "${BUILDDIR}"
${CMD_QMAKE} -r CONFIG+="release" QTPLUGIN.imageformats="qico qsvg qtiff" CONFIG+="enable_librsvg enable_j40" CONFIG+="enable_update_checking" "../${PROJECT}.pro"
${CMD_QMAKE} -r CONFIG+="release" QTPLUGIN.imageformats="qico qsvg qtiff" CONFIG+="enable_librsvg enable_j40" "../${PROJECT}.pro"
make -j$(getconf _NPROCESSORS_ONLN)
strip --strip-all "${APP_PATH}/${PROJECT}"
cp -a "${APP_PATH}/${PROJECT}" ../"${PROJECT}_${SUFFIX_FULL}.elf"
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/win_qt5.6_msvc2017_x64.bat
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ cd ..
rmdir /S /Q %BUILDDIR% 2>nul >nul
mkdir %BUILDDIR%
cd %BUILDDIR%
qmake -r CONFIG+="release" QTPLUGIN.imageformats="qico qsvg qtiff" CONFIG+="enable_update_checking" ..\%PROJECT%.pro
qmake -r CONFIG+="release" QTPLUGIN.imageformats="qico qsvg qtiff" ..\%PROJECT%.pro
%NMAKE_CMD%
if not exist %APP_PATH%\release\%PROJECT%.exe (
if NOT "%CI%" == "true" pause
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/win_qt5.6_msvc2017_x86.bat
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ cd ..
rmdir /S /Q %BUILDDIR% 2>nul >nul
mkdir %BUILDDIR%
cd %BUILDDIR%
qmake -r CONFIG+="release" QTPLUGIN.imageformats="qico qsvg qtiff" CONFIG+="enable_update_checking" ..\%PROJECT%.pro
qmake -r CONFIG+="release" QTPLUGIN.imageformats="qico qsvg qtiff" ..\%PROJECT%.pro
%NMAKE_CMD%
if not exist %APP_PATH%\release\%PROJECT%.exe (
if NOT "%CI%" == "true" pause
Expand Down

0 comments on commit 3e0561e

Please sign in to comment.