Commit d53ccb2a authored by Dom Sekotill's avatar Dom Sekotill
Browse files

.shell/funcs:get_platform: detect GNU with EABI

parent c36be5c2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ has()
get_platform()
{
	case "$OSTYPE" in
		linux-gnu) echo gnu ;;
		linux-gnu*) echo gnu ;;
		darwin*) echo darwin ;;
		*) echo $OSTYPE ;;
	esac