Darwin-compatible buildroot/src scripts (#10760)

This commit is contained in:
Scott Lahteine 2018-05-15 22:22:44 -05:00 committed by GitHub
parent 2ce8047adb
commit c739943786
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 21 additions and 7 deletions

View file

@ -1,3 +1,5 @@
#!/usr/bin/env bash
eval "sed -i 's/\(#define \b${1}\b\).*$/\1 ${2}/g' Marlin/Configuration.h"
SED=$(which gsed || which sed)
eval "${SED} -i 's/\(#define \b${1}\b\).*$/\1 ${2}/g' Marlin/Configuration.h"