[uClibc-cvs] uClibc/ldso Makefile,1.24,1.25

Erik Andersen andersen at uclibc.org
Sat Oct 18 10:50:40 UTC 2003


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

Modified Files:
	Makefile 
Log Message:
Peter Kjellerstedt writes:

ln.patch:
* Define $(LN) as ln in Rules.mak.
* Change all occurrences of ln into $(LN).
* Change all constructs like (cd path && ln -sf foo/file file)
  into $(LN) -sf foo/file path/file. The latter construct is
  already used in a number of places so it should not be
  an additional compatibility problem.



Index: Makefile
===================================================================
RCS file: /var/cvs/uClibc/ldso/Makefile,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- Makefile	18 Oct 2003 10:18:33 -0000	1.24
+++ Makefile	18 Oct 2003 10:50:36 -0000	1.25
@@ -44,10 +44,10 @@
 	$(MAKE) -C util;
 
 headers:
-	ln -fs $(TOPDIR)../include/elf.h include/
-	ln -fs ../ldso/$(TARGET_ARCH)/boot1_arch.h include/
-	ln -fs ../ldso/$(TARGET_ARCH)/ld_syscalls.h include/
-	ln -fs ../ldso/$(TARGET_ARCH)/ld_sysdep.h include/
+	$(LN) -fs $(TOPDIR)../include/elf.h include/
+	$(LN) -fs ../ldso/$(TARGET_ARCH)/boot1_arch.h include/
+	$(LN) -fs ../ldso/$(TARGET_ARCH)/ld_syscalls.h include/
+	$(LN) -fs ../ldso/$(TARGET_ARCH)/ld_sysdep.h include/
 
 clean:
 	set -e ; for d in $(ALL_SUBDIRS) ; do $(MAKE) -C $$d $@ ; done




More information about the uClibc-cvs mailing list