<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> ------------------------------------------------------------------------
r3811 | ds | 2001-11-26 05:37:52 -0600 (Mon, 26 Nov 2001) | 3 lines
Changed paths:
   M /trunk/uClibc/Rules.mak

Fix TARGET_CFLAGS to include -fPIC when needed.  Libs were being
compiled without -fPIC.

 ------------------------------------------------------------------------
Index: Rules.mak
===================================================================
--- Rules.mak	(revision 3810)
+++ Rules.mak	(revision 3811)
@@ -67,6 +67,7 @@
 endif
 ifeq ($(strip $(DOPIC)),true)
     CFLAGS += -fPIC
+    TARGET_CFLAGS += -fPIC
 endif
 
 ifeq ($(strip $(HAVE_SHARED)),true)
</pre></body></html>