Your ROOT_URL in app.ini is https://gitea.jennalody.de/ but you are visiting https://gitea.jenslody.de/jenna/kernel_samsung_sm7125/src/commit/ed391f4ebf8f701d3566423ce8f17e614cde9806/scripts/gcc-x86_32-has-stack-protector.sh
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
#!/bin/sh
|
|
|
|
echo "int foo(void) { char X[200]; return 3; }" | $* -S -xc -c -O0 -fstack-protector - -o - 2> /dev/null | grep -q "%gs"
|
|
if [ "$?" -eq "0" ] ; then
|
|
echo y
|
|
else
|
|
echo n
|
|
fi
|
|
|