creddit: Fix ./common.mk issue, uname was called with wrong parameter

uname was called with the '-r' parameter, which returns the kernel
version. This patch changes it to '-s', which prints the kernel name.
This commit is contained in:
Matt Kilgore 2013-11-12 13:13:53 -05:00
parent a6d972b3c1
commit 077f99a252
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
# Makefile for registering info about the system we're compiling on.
UNAME=$(shell uname -r)
UNAME=$(shell uname -s)
ifeq ('Darwin','$(UNAME)')
F_MACOSX=yes
endif