diff options
author | Marcus von Appen <marcus@sysfault.org> | 2014-06-07 09:16:42 +0200 |
---|---|---|
committer | Marcus von Appen <marcus@sysfault.org> | 2014-06-07 09:16:42 +0200 |
commit | 8ffc02495fefcd3eaf71d15276136e9a90aee912 (patch) | |
tree | a91ef3e7e4dc55eb7e8cfc2ea1564420fba4c383 /py/py-version.sh | |
parent | c61be8e1e10a8c7bac3161cae531d26a9d754825 (diff) | |
download | micropython-8ffc02495fefcd3eaf71d15276136e9a90aee912.tar.gz micropython-8ffc02495fefcd3eaf71d15276136e9a90aee912.zip |
- Let the build environment decide about the toolchain to be used, in case
there are special tweaks and paths to be considered. Just provide some
defaults, in case the values are undefined.
- py-version.sh does not need any bash specific features.
- Use libdl only on Linux for now. FreeBSD provides dl*() calls from libc.
Diffstat (limited to 'py/py-version.sh')
-rwxr-xr-x | py/py-version.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/py-version.sh b/py/py-version.sh index 93b8d7a1fd..88c3ebb986 100755 --- a/py/py-version.sh +++ b/py/py-version.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # Note: git describe doesn't work if no tag is available git_tag="$(git describe --dirty --always)" |