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 2007/09/12 03:25:13 UTC

svn commit: r574747 - /incubator/stdcxx/trunk/etc/config/sunpro.config

Author: sebor
Date: Tue Sep 11 18:25:12 2007
New Revision: 574747

URL: http://svn.apache.org/viewvc?rev=574747&view=rev
Log:
2007-09-12  Martin Sebor  <se...@roguewave.com>

	STDCXX-549
	* sunpro.config (CCVER): Removed unnecessary backslashes accepted
	on Solaris from a sed expression to prevent incorrect behavior on
	Linux.

Modified:
    incubator/stdcxx/trunk/etc/config/sunpro.config

Modified: incubator/stdcxx/trunk/etc/config/sunpro.config
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/sunpro.config?rev=574747&r1=574746&r2=574747&view=diff
==============================================================================
--- incubator/stdcxx/trunk/etc/config/sunpro.config (original)
+++ incubator/stdcxx/trunk/etc/config/sunpro.config Tue Sep 11 18:25:12 2007
@@ -31,7 +31,7 @@
 # extract the "C++ m.n" substring from version string (whcih changes
 # from one release of the compiler to another)
 CCVER          := $(shell   $(CXX) -V 2>&1 | head -n1 \
-                          | sed 's/.*C\+\+ *\([^ ]*\).*/\1/')
+                          | sed 's/.*C++ *\([^ ]*\).*/\1/')
 CCMAJOR        := $(shell echo $(CCVER) | cut -f1 -d'.')
 CCMINOR        := $(shell echo $(CCVER) | cut -f2 -d'.')