[uClibc-cvs] uClibc/ldso/ldso Makefile,1.44,1.45

Erik Andersen andersen at uclibc.org
Sat Oct 18 10:07:34 UTC 2003


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

Modified Files:
	Makefile 
Log Message:
Peter Kjellerstedt writes:

install.patch:
* Define $(INSTALL) as install in Rules.mak.
* Change all occurrences of install into $(INSTALL).
* Change all occurrences of mkdir -p into $(INSTALL) -d.
  install -d is already used in a number of places so
  this should not be an additional compatibility problem.



Index: Makefile
===================================================================
RCS file: /var/cvs/uClibc/ldso/ldso/Makefile,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- Makefile	14 Oct 2003 06:23:00 -0000	1.44
+++ Makefile	18 Oct 2003 10:07:30 -0000	1.45
@@ -71,8 +71,8 @@
 lib:: _dl_progname.h $(OBJS) $(DLINK_OBJS)
 	$(LD) $(LDFLAGS) -e _dl_boot -soname=$(UCLIBC_LDSO) \
 		-o $(LDSO_FULLNAME) $(OBJS) $(LIBGCC);
-	install -d $(TOPDIR)lib 
-	install -m 755 $(LDSO_FULLNAME) $(TOPDIR)lib
+	$(INSTALL) -d $(TOPDIR)lib
+	$(INSTALL) -m 755 $(LDSO_FULLNAME) $(TOPDIR)lib
 	(cd $(TOPDIR)lib && ln -sf $(LDSO_FULLNAME) $(UCLIBC_LDSO))
 
 _dl_progname.h: Makefile




More information about the uClibc-cvs mailing list