Module Name:    src
Committed By:   mrg
Date:           Thu Jun 30 03:37:24 UTC 2011

Modified Files:
        src/external/gpl3/gcc/dist/gcc: gcc.c

Log Message:
apply our LIBGCC_PICSUFFIX to one more use of "static_name".
i hope that this is the last merge botch here to fix...


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/gpl3/gcc/dist/gcc/gcc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/dist/gcc/gcc.c
diff -u src/external/gpl3/gcc/dist/gcc/gcc.c:1.5 src/external/gpl3/gcc/dist/gcc/gcc.c:1.6
--- src/external/gpl3/gcc/dist/gcc/gcc.c:1.5	Wed Jun 29 02:12:29 2011
+++ src/external/gpl3/gcc/dist/gcc/gcc.c	Thu Jun 30 03:37:23 2011
@@ -1767,7 +1767,11 @@
 		"%{!static:%{!static-libgcc:"
 #if USE_LD_AS_NEEDED
 		"%{!shared-libgcc:",
-		static_name, " --as-needed ", shared_name, " --no-as-needed"
+		static_name,
+#ifdef LIBGCC_PICSUFFIX
+		LIBGCC_PICSUFFIX,
+#endif
+		" --as-needed ", shared_name, " --no-as-needed"
 		"}"
 		"%{shared-libgcc:",
 		shared_name, "%{!shared: ", static_name,

Reply via email to