diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-10-01 22:55:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-01 22:55:20 +0200 |
commit | 41bd6ed628ffb4b16fcd7cbe788bd2f46ecd5596 (patch) | |
tree | 3d64a6cb4f010606fcd48abd0fc7b73fc7a58362 | |
parent | fcbb00b97ac54c75514646616ce89d9260173049 (diff) | |
parent | 78078ea6b46868c5a66f409cf5b3c7ed8ec4c268 (diff) | |
download | Nim-41bd6ed628ffb4b16fcd7cbe788bd2f46ecd5596.tar.gz |
Merge pull request #9145 from valtron/devel
Misc portability stuff
-rw-r--r-- | build_all.sh | 2 | ||||
-rw-r--r-- | tools/niminst/buildsh.tmpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/build_all.sh b/build_all.sh index 701d7d204..7b809b06a 100644 --- a/build_all.sh +++ b/build_all.sh @@ -6,7 +6,7 @@ set -u # error on undefined variables set -e # exit on first error echo_run(){ - echo "\n$@" + printf "\n$*" "$@" } diff --git a/tools/niminst/buildsh.tmpl b/tools/niminst/buildsh.tmpl index be6d43754..f0f72888a 100644 --- a/tools/niminst/buildsh.tmpl +++ b/tools/niminst/buildsh.tmpl @@ -119,7 +119,7 @@ case $uos in myos="haiku" LINK_FLAGS="$LINK_FLAGS -lroot -lnetwork" ;; - *mingw* ) + *mingw* | *msys* ) myos="windows" ;; *android* ) |