only check uname if OS is Windows_NT
authorMichael Göhler <somebody.here@gmx.de>
Tue, 23 Sep 2014 19:45:57 +0000 (21:45 +0200)
committerMichael Göhler <somebody.here@gmx.de>
Tue, 23 Sep 2014 19:45:57 +0000 (21:45 +0200)
Makefile
src/Makefile

index f922b7e..5801f84 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -18,9 +18,9 @@
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
 #
 
-OSTYPE  := $(shell uname -o)
 CURSES   = ncursesw
 ifeq (Windows_NT, $(OS))
+OSTYPE  := $(shell uname -o)
 ifneq (Cygwin, $(OSTYPE))
 CURSES  := pdcurses
 endif
index f0783e9..42d5563 100644 (file)
@@ -26,8 +26,8 @@ ifeq ($(DEBUG),1)
 CFLAGS  := -O0 -Wall -g -I../include
 endif
 
-OSTYPE  := $(shell uname -o)
 ifeq (Windows_NT, $(OS))
+OSTYPE  := $(shell uname -o)
 ifneq (Cygwin, $(OSTYPE))
 CFLAGS  += -DWIN32=1
 endif