hotspot/make/defs.make
changeset 22830 df1bb606b2ca
parent 22818 34cd99df9940
child 22838 82c7497fbad4
--- a/hotspot/make/defs.make	Fri Sep 06 10:13:17 2013 +0200
+++ b/hotspot/make/defs.make	Fri Sep 06 20:08:29 2013 +0200
@@ -166,11 +166,15 @@
   HOST := $(shell uname -n)
 endif
 
-# If not SunOS, not Linux and not BSD, assume Windows
+# If not SunOS, not Linux not BSD and not AIX, assume Windows
 ifneq ($(OS), Linux)
   ifneq ($(OS), SunOS)
     ifneq ($(OS), bsd)
-      OSNAME=windows
+      ifneq ($(OS), AIX)
+        OSNAME=windows
+      else
+        OSNAME=aix
+      endif
     else
       OSNAME=bsd
     endif