[uClibc-cvs] uClibc Makefile,1.204,1.205

Erik Andersen andersen at uclibc.org
Fri May 30 04:48:16 UTC 2003


Update of /var/cvs/uClibc
In directory winder:/tmp/cvs-serv14565

Modified Files:
	Makefile 
Log Message:
In a number of places we erroneously used tests such as '#ifdef PIC' when we
should instead have been testing for '#ifdef __PIC__'.  This resulted in
NON-PIC code getting mixed into the shared library.  Oops!!!
 -Erik


Index: Makefile
===================================================================
RCS file: /var/cvs/uClibc/Makefile,v
retrieving revision 1.204
retrieving revision 1.205
diff -u -d -r1.204 -r1.205
--- Makefile	7 Mar 2003 12:07:13 -0000	1.204
+++ Makefile	30 May 2003 04:47:42 -0000	1.205
@@ -151,7 +151,7 @@
 	    set -e; \
 	    echo " "; \
 	    echo "The path '$(KERNEL_SOURCE)/include/asm' doesn't exist."; \
-	    echo "I bet you didn't set KERNEL_SOURCE, TARGET_ARCH or UCLIBC_HAS_MMU"; \
+	    echo "I bet you did not set KERNEL_SOURCE, TARGET_ARCH or UCLIBC_HAS_MMU"; \
 	    echo "correctly when you configured uClibc.  Please fix these settings."; \
 	    echo " "; \
 	    false; \



More information about the uClibc-cvs mailing list