[FFmpeg-cvslog] r24652 - trunk/configure

mru subversion
Sun Aug 1 18:13:12 CEST 2010


Author: mru
Date: Sun Aug  1 18:13:12 2010
New Revision: 24652

Log:
Fix suncc ident string (hopefully)

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Sun Aug  1 17:28:42 2010	(r24651)
+++ trunk/configure	Sun Aug  1 18:13:12 2010	(r24652)
@@ -1889,7 +1889,7 @@ elif $cc -v 2>&1 | grep -q clang; then
 elif $cc -V 2>&1 | grep -q Sun; then
     cc_type=suncc
     cc_version="AV_STRINGIFY(__SUNPRO_C)"
-    cc_ident=$($cc -V | head -n1)
+    cc_ident=$($cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
     DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
     DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -xM1'
     speed_cflags='-O5'



More information about the ffmpeg-cvslog mailing list