URI:
       build: Preserve exit status scripts/config - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit a4f6e0ebf74b40d95b8d4de20bd0eb890efefaf3
   DIR parent 52cf2e9986d52e8e812a30b94dc118dabb1aea1f
  HTML Author: Roberto E. Vargas Caballero <k0ga@shike2.net>
       Date:   Tue,  6 Jan 2026 01:14:33 +0100
       
       build: Preserve exit status scripts/config
       
       Diffstat:
         M scripts/config                      |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/scripts/config b/scripts/config
       @@ -1,7 +1,8 @@
        #!/bin/sh
        
        exec > $$.tmp
       -trap "rm -f $$.tmp" EXIT INT TERM
       +trap "rm -f $$.tmp" EXIT
       +trap "exit $?" HUP INT TERM
        
        arch=`uname -m`
        sys=`uname -s | tr 'A-Z' 'a-z'`