You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2006/11/08 19:46:03 UTC

svn commit: r472582 - /incubator/stdcxx/trunk/GNUmakefile

Author: sebor
Date: Wed Nov  8 10:46:03 2006
New Revision: 472582

URL: http://svn.apache.org/viewvc?view=rev&rev=472582
Log:
2006-11-08  Martin Sebor  <se...@roguewave.com>

	* GNUmakefile: Included the name of the platform in error messages.

Modified:
    incubator/stdcxx/trunk/GNUmakefile

Modified: incubator/stdcxx/trunk/GNUmakefile
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/GNUmakefile?view=diff&rev=472582&r1=472581&r2=472582
==============================================================================
--- incubator/stdcxx/trunk/GNUmakefile (original)
+++ incubator/stdcxx/trunk/GNUmakefile Wed Nov  8 10:46:03 2006
@@ -277,7 +277,7 @@
     endif   # gcc
 
     ifeq ($(CONFIG),)
-      $(error "could not find a config file for this system: $(OSNAME)")
+      $(error "could not find a config file for this platform: $(OSNAME)")
     else
       $(warning "CONFIG not specified, using $(CONFIG)")
     endif
@@ -449,7 +449,7 @@
   else
     ifeq ($(findstring dcethreads,$(BUILDMODE)),dcethreads)
       ifneq ($(OSNAME),OSF1)
-        $(error "DCE threads not suported on this platform")
+        $(error "DCE threads not suported on this platform:" $(OSNAME))
       endif
 
       CPPFLAGS += $(MULTI_CPPFLAGS_DCE)
@@ -457,7 +457,7 @@
     else
       ifeq ($(findstring threads,$(BUILDMODE)),threads)
         ifneq ($(OSNAME),SunOS)
-          $(error "Solaris threads not suported on this platform")
+          $(error "Solaris threads not suported on this platform: " $(OSNAME))
         endif
 
         CPPFLAGS +=  $(MULTI_CPPFLAGS_SOLARIS)