You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by bo...@apache.org on 2010/01/28 13:31:53 UTC

svn commit: r904065 - /xerces/c/trunk/config/pretty-make

Author: borisk
Date: Thu Jan 28 12:31:53 2010
New Revision: 904065

URL: http://svn.apache.org/viewvc?rev=904065&view=rev
Log:
Filter options that start with + (HP aCC style).

Modified:
    xerces/c/trunk/config/pretty-make

Modified: xerces/c/trunk/config/pretty-make
URL: http://svn.apache.org/viewvc/xerces/c/trunk/config/pretty-make?rev=904065&r1=904064&r2=904065&view=diff
==============================================================================
--- xerces/c/trunk/config/pretty-make (original)
+++ xerces/c/trunk/config/pretty-make Thu Jan 28 12:31:53 2010
@@ -36,11 +36,13 @@
 # problems, and may not be reliable across all compilers. Given the
 # dependencies, this is usually the last argument, but sometimes libtool
 # adds additional flags, which throws this off. So we look
-# for the last arg that doesn't start with -.
+# for the last arg that doesn't start with - or + (HP aCC style).
 while [ $# -gt 0 ]; do
 	case ${1} in
 	-*)
 		;;
+	+*)
+		;;
 	*)
 		target=$1
 		;;



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org