commit cf39f67abcb236e6b77db6b27531db72deca51c2
Author:     Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Tue Nov 29 14:15:19 2016 +0100
Commit:     Roberto E. Vargas Caballero <[email protected]>
CommitDate: Tue Nov 29 14:15:19 2016 +0100

    Avoid whitespace in ARCH = qbe
    
    The comment may generate a space in the assignation to qbe

diff --git a/config.mk b/config.mk
index 2e1ac50..869150e 100644
--- a/config.mk
+++ b/config.mk
@@ -1,9 +1,10 @@
 # scc version
 VERSION = 0.1
 
-# Customize below to fit your system
+## Customize below to fit your system
 ARCHS = z80 i386-sysv amd64-sysv qbe
-ARCH = qbe  # default architecure used in nested makefiles
+# default architecure used in nested makefiles
+ARCH = qbe
 DRIVER = posix
 
 # Remove inc/sizes.h if STD is changed

Reply via email to