Tweak opt_set, opt_enable
This commit is contained in:
parent
7f1fa0d1ff
commit
3107d8a0f4
@ -7,7 +7,7 @@ SED=$(which gsed || which sed)
|
|||||||
|
|
||||||
for opt in "$@" ; do
|
for opt in "$@" ; do
|
||||||
# Logic for returning nonzero based on answer here: https://stackoverflow.com/a/15966279/104648
|
# Logic for returning nonzero based on answer here: https://stackoverflow.com/a/15966279/104648
|
||||||
eval "${SED} -i '/^[[:blank:]]*\(\/\/\)*[[:blank:]]*\(#define \b${opt}\b\)/{s//\2/;h};\${x;/./{x;q0};x;q9}' Marlin/Configuration.h" ||
|
eval "${SED} -i '/^\([[:blank:]]*\/\/\)*[[:blank:]]*\(#define \b${opt}\b\)/{s//\2/;h};\${x;/./{x;q0};x;q9}' Marlin/Configuration.h" ||
|
||||||
eval "${SED} -i '/^[[:blank:]]*\(\/\/\)*[[:blank:]]*\(#define \b${opt}\b\)/{s//\2/;h};\${x;/./{x;q0};x;q9}' Marlin/Configuration_adv.h" ||
|
eval "${SED} -i '/^\([[:blank:]]*\/\/\)*[[:blank:]]*\(#define \b${opt}\b\)/{s//\2/;h};\${x;/./{x;q0};x;q9}' Marlin/Configuration_adv.h" ||
|
||||||
(echo "ERROR: opt_enable Can't find ${opt}" >&2 && exit 9)
|
(echo "ERROR: opt_enable Can't find ${opt}" >&2 && exit 9)
|
||||||
done
|
done
|
||||||
|
@ -8,8 +8,8 @@ SED=$(which gsed || which sed)
|
|||||||
ARGC=$#
|
ARGC=$#
|
||||||
while [[ $# > 1 ]]; do
|
while [[ $# > 1 ]]; do
|
||||||
# Logic for returning nonzero based on answer here: https://stackoverflow.com/a/15966279/104648
|
# Logic for returning nonzero based on answer here: https://stackoverflow.com/a/15966279/104648
|
||||||
eval "${SED} -i '/^[[:blank:]]*\(\/\/\)*\([[:blank:]]*\)\(#define\s\+\b${1}\b\).*$/{s//\2\3 ${2}/;h};\${x;/./{x;q0};x;q9}' Marlin/Configuration.h" ||
|
eval "${SED} -i '/^\([[:blank:]]*\)\(\/\/\)*\([[:blank:]]*\)\(#define\s\+\b${1}\b\).*$/{s//\1\3\4 ${2}/;h};\${x;/./{x;q0};x;q9}' Marlin/Configuration.h" ||
|
||||||
eval "${SED} -i '/^[[:blank:]]*\(\/\/\)*\([[:blank:]]*\)\(#define\s\+\b${1}\b\).*$/{s//\2\3 ${2}/;h};\${x;/./{x;q0};x;q9}' Marlin/Configuration_adv.h" ||
|
eval "${SED} -i '/^\([[:blank:]]*\)\(\/\/\)*\([[:blank:]]*\)\(#define\s\+\b${1}\b\).*$/{s//\1\3\4 ${2}/;h};\${x;/./{x;q0};x;q9}' Marlin/Configuration_adv.h" ||
|
||||||
eval "echo '#define ${1} ${2}' >>Marlin/Configuration.h" ||
|
eval "echo '#define ${1} ${2}' >>Marlin/Configuration.h" ||
|
||||||
(echo "ERROR: opt_set Can't set or add ${1}" >&2 && exit 9)
|
(echo "ERROR: opt_set Can't set or add ${1}" >&2 && exit 9)
|
||||||
shift 2
|
shift 2
|
||||||
|
Loading…
Reference in New Issue
Block a user