summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRasmus Karlsson2022-05-11 23:37:18 +0200
committerRasmus Karlsson2022-05-11 23:37:18 +0200
commit745c7be6f84ef4c5023edcc2733dd7fa56048905 (patch)
tree0ae650678d877b1600273c54d3fdeeb80fbddc1a
parentd3d2933e3cb83957dced5c8d43f43b404a876c6b (diff)
downloadaur-745c7be6f84ef4c5023edcc2733dd7fa56048905.tar.gz
Add comment about magic_enum config call missing
-rw-r--r--PKGBUILD3
1 files changed, 3 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD
index a46e60eec189..035612aaca5b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -58,6 +58,9 @@ prepare () {
git config submodule.qtkeychain $srcdir/$_pkgname/lib/qtkeychain
git config submodule.sanitizers-cmake $srcdir/$_pkgname/lib/sanitizers-cmake
git config submodule.websocketpp $srcdir/$_pkgname/lib/websocketpp
+ # We can't set the local directory of this submodule as we have no way of accessing the config name `submodule.magic_enum` because underscores are actually not allowed.
+ # The only thing I can think of is moving the submodule to `lib/magicenum` but that feels like an off approach. I'll look into it only if builds fail because of the below call is missing.
+ # git config submodule.magic_enum $srcdir/$_pkgname/lib/magic_enum
git submodule update
}