ifeq (${VERBOSE},0)
     # log the printf command
-    Q1s := @
+    Q1s :=
     Q1e := >> ${LOGFILE}
     # quiet the printf command
-    Q2s := @
+    Q2s :=
     Q2e :=
                # log the command
-    Q3s := @echo # NOTE: the space between @echo and the # is VERY important!!
+    Q3s := echo # NOTE: the space between @echo and the # is VERY important!!
     Q3e := >> ${LOGFILE}
     # quiet the command, log the output
-    Q4s := @set -o pipefail &&
+    Q4s := set -o pipefail &&
     Q4e := 2>&1 | tee -a ${LOGFILE}
 else
     # EAT the logging printf command
-    Q1s := @true # NOTE: the space between @true and the # is VERY important!!
+    Q1s := true # NOTE: the space between @true and the # is VERY important!!
     Q1e :=
     # EAT the quiet printf command
-    Q2s := @true # NOTE: the space between @true and the # is VERY important!!
+    Q2s := true # NOTE: the space between @true and the # is VERY important!!
     Q2e :=
                # EAT the logging command
-    Q3s := @true # NOTE: the space between @true and the # is VERY important!!
+    Q3s := true # NOTE: the space between @true and the # is VERY important!!
     Q3e :=
     # do not quiet the command
     Q4s :=