diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-05-17 19:30:30 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-05-17 19:30:30 +0200 |
commit | 41b77cc84e20b858db468e04c0d3ced69134d214 (patch) | |
tree | a3c18edf04cae101a144a9e89d74174afd015413 /build.sh | |
parent | cfec0ef728b63f5141e7f4c87c32d659962feded (diff) |
Disable error on warning because of possible ffmpeg deprecated warning
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ #!/bin/sh -e -opts="-O2 -g0 -DNDEBUG -Wall -Wextra -Werror -s" -[ -n "$DEBUG" ] && opts="-O0 -g3 -Wall -Wextra -Werror"; +opts="-O2 -g0 -DNDEBUG -Wall -Wextra -s" +[ -n "$DEBUG" ] && opts="-O0 -g3 -Wall -Wextra"; build_gsr_kms_server() { dependencies="libdrm" |