1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #5826 from thomaseichinger/pr/fix_freebsd

dist/tools: include uname check for FreeBSD in genconfigheader
This commit is contained in:
Sebastian Meiling 2016-09-06 16:08:26 +02:00 committed by GitHub
commit 814fe93791

View File

@ -22,7 +22,7 @@ OUTPUTFILE="$1"
shift
MD5SUM=md5sum
if [ "$(uname -s)" = "Darwin" ]; then
if [ "$(uname -s)" = "Darwin" -o "$(uname -s)" = "FreeBSD" ]; then
MD5SUM="md5 -r"
fi