Commit bc4b1770 authored by Gregor's avatar Gregor
Browse files

Fix small issues and add execute bit for unix

parent ad90e8dd
...@@ -12,9 +12,9 @@ RELEASE_DTS=0$(git show -s --format=%cd --date=format:"%Y%m%d%H%M" HEAD) ...@@ -12,9 +12,9 @@ RELEASE_DTS=0$(git show -s --format=%cd --date=format:"%Y%m%d%H%M" HEAD)
# figure out whether SSL is enabled in user_config.h # figure out whether SSL is enabled in user_config.h
if grep -Eq "^#define CLIENT_SSL_ENABLE" $USER_CONFIG_H; then if grep -Eq "^#define CLIENT_SSL_ENABLE" $USER_CONFIG_H; then
SSL="true" SSL="true"
else else
SSL="false" SSL="false"
fi fi
# figure out whether LFS configuration in user_config.h # figure out whether LFS configuration in user_config.h
LFS=$(grep "^#define LUA_FLASH_STORE" $USER_CONFIG_H | tr -d '\r' | cut -d ' ' -f 3-) LFS=$(grep "^#define LUA_FLASH_STORE" $USER_CONFIG_H | tr -d '\r' | cut -d ' ' -f 3-)
...@@ -22,7 +22,7 @@ if [ -z "$LFS" ]; then ...@@ -22,7 +22,7 @@ if [ -z "$LFS" ]; then
LFS="disabled" LFS="disabled"
else else
LFS="Size: ${LFS}" LFS="Size: ${LFS}"
fi fi
# figure out whether Int build is enabled in user_config.h # figure out whether Int build is enabled in user_config.h
if grep -Eq "^#define LUA_NUMBER_INTEGRAL" $USER_CONFIG_H; then if grep -Eq "^#define LUA_NUMBER_INTEGRAL" $USER_CONFIG_H; then
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment