Date: Friday, October 21, 2022 @ 17:23:07 Author: foutrelis Revision: 458575
Fix cloning from a local directory with git 2.38.1 Work around "fatal: transport 'file' not allowed" in submodule update. Modified: qt5-webengine/trunk/PKGBUILD ----------+ PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-10-21 17:19:09 UTC (rev 458574) +++ PKGBUILD 2022-10-21 17:23:07 UTC (rev 458575) @@ -40,7 +40,7 @@ git submodule init git submodule set-url src/3rdparty "$srcdir"/qtwebengine-chromium git submodule set-branch --branch 87-based src/3rdparty - git submodule update + git -c protocol.file.allow=always submodule update patch -p1 -i "$srcdir"/qt5-webengine-python3.patch # Fix build with Python 3 patch -p1 -d src/3rdparty -i "$srcdir"/qt5-webengine-chromium-python3.patch
