aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/sendemail-validate
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/sendemail-validate')
-rwxr-xr-xcontrib/sendemail-validate4
1 files changed, 1 insertions, 3 deletions
diff --git a/contrib/sendemail-validate b/contrib/sendemail-validate
index ae29d05c..8f0af2d5 100755
--- a/contrib/sendemail-validate
+++ b/contrib/sendemail-validate
@@ -30,11 +30,9 @@ validate_patch () {
git am -3 "$file"
}
-export CFLAGS="-O0 -g -std=c99 -Wall -Wextra -Wconversion -Werror -Wformat-security -Wstack-protector -Wpedantic -Wmissing-prototypes"
-
validate_series () {
command -v gmake >/dev/null 2>&1 && make="gmake" || make="make"
- $make all tests lint check-patches
+ $make validate
}
# main -------------------------------------------------------------------------