Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
Ari Archer 2022-05-10 00:16:49 +03:00
parent d64475d8c0
commit 787054bbfb
Signed by untrusted user who does not match committer: ari
GPG key ID: A50D5B4B599AF8A2

View file

@ -18,8 +18,8 @@ main() {
} >&2
set -x
eval -- "$CC $SRC -o clrz $CFLAGS"
[ "$STRIP" ] && eval -- "strip $SFLAGS clrz"
eval "$CC $SRC -o clrz $CFLAGS"
[ "$STRIP" ] && eval "strip $SFLAGS clrz"
set +x
}