• Alessandro Rubini's avatar
    apply-dot-config: fix wrong sh syntax (unexposed bug) · 049e8b55
    Alessandro Rubini authored
    In sh, string comparison for equality is "=", not "==". Bash accepts
    either operator but suggests to use "=" for posix conformance.
    Our /bin/sh is currently busybox, which accepts "==" like bash, but
    if you use ash or dash it fails:
    
       $ CONFIG_FOO=y
       $ if [ "$CONFIG_FOO" = "y" ]; then echo ok; fi
       ok
       $ if [ "$CONFIG_FOO" == "y" ]; then echo ok; fi
       dash: 3: [: y: unexpected operator
    Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
    049e8b55
Name
Last commit
Last update
..
dot-config Loading commit data...
host_tools Loading commit data...
include Loading commit data...
libsdb Loading commit data...
libwr Loading commit data...
mini-rpc Loading commit data...
ppsi @ a56a105f
rootfs_override Loading commit data...
snmpd Loading commit data...
tools Loading commit data...
wrs_watchdog Loading commit data...
wrsw_hal Loading commit data...
wrsw_rtud Loading commit data...
.gitignore Loading commit data...
Makefile Loading commit data...
devices.tar.gz Loading commit data...