1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

dist/tools: include uname check for FreeBSD in genconfigheader

Analog to Darwin set `MD5SUM` to `md5 -r`.
This commit is contained in:
Thomas Eichinger 2016-09-06 14:45:58 +02:00
parent 53a7225419
commit 59bc1b46b7

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