From: Robert Pengelly Date: Sat, 22 Mar 2025 18:46:14 +0000 (+0000) Subject: Switch command checks around X-Git-Url: https://git.candlhat.org/?a=commitdiff_plain;h=29cd4060947524a62d72cb66883ef34020257c11;p=xmake.git Switch command checks around --- diff --git a/xmake.c b/xmake.c index 85159c5..01ede50 100644 --- a/xmake.c +++ b/xmake.c @@ -49,11 +49,11 @@ static int rule_run_command (const char *name, char *p, char *q) { while (isspace ((int) *s) || *s == '-' || *s == '@') { - if (*s == '-') { + if (*s == '@') { is_quiet = 1; } - if (*s == '@') { + if (*s == '-') { is_ignoring_errors = 1; }