From 49f0dd0fcb64746b1ef06e094f2fa8091c23637c Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 18 Oct 2003 10:07:43 +0000 Subject: 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. --- libc/Makefile | 8 ++++---- libc/sysdeps/linux/common/Makefile | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'libc') diff --git a/libc/Makefile b/libc/Makefile index 06676d486..d7effaaed 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -53,9 +53,9 @@ all: halfclean subdirs $(LIBNAME) $(DO_SHARED) ar-target: $(CROSS)ranlib $(LIBNAME) - install -d $(TOPDIR)lib + $(INSTALL) -d $(TOPDIR)lib rm -f $(TOPDIR)lib/$(LIBNAME) - install -m 644 $(LIBNAME) $(TOPDIR)lib + $(INSTALL) -m 644 $(LIBNAME) $(TOPDIR)lib $(LIBNAME): subdirs ar-target @@ -66,9 +66,9 @@ shared: $(TOPDIR)lib/$(LIBNAME) $(LIBGCC_NEED) $(TOPDIR)/libc/misc/internals/interp.o --no-whole-archive \ -init __uClibc_init $(LIBGCC) @true #rm -rf tmp - install -d $(TOPDIR)lib + $(INSTALL) -d $(TOPDIR)lib rm -f $(TOPDIR)lib/$(SHARED_FULLNAME) - install -m 644 $(SHARED_FULLNAME) $(TOPDIR)lib + $(INSTALL) -m 644 $(SHARED_FULLNAME) $(TOPDIR)lib (cd ../lib && ln -sf $(SHARED_FULLNAME) libc.so); (cd ../lib && ln -sf $(SHARED_FULLNAME) $(SHARED_MAJORNAME)); diff --git a/libc/sysdeps/linux/common/Makefile b/libc/sysdeps/linux/common/Makefile index 8bff24f2e..1b51e095a 100644 --- a/libc/sysdeps/linux/common/Makefile +++ b/libc/sysdeps/linux/common/Makefile @@ -80,21 +80,21 @@ crti.o: crti.S $(CC) $(SAFECFLAGS) -c crti.S -o crti.o $(TOPDIR)lib/crti.o: crti.o - mkdir -p $(TOPDIR)lib/ + $(INSTALL) -d $(TOPDIR)lib/ cp crti.o $(TOPDIR)lib/ crtn.o: crtn.S $(CC) $(SAFECFLAGS) -c crtn.S -o crtn.o $(TOPDIR)lib/crtn.o: crtn.o - mkdir -p $(TOPDIR)lib/ + $(INSTALL) -d $(TOPDIR)lib/ cp crtn.o $(TOPDIR)lib/ else $(TOPDIR)lib/crti.o: - mkdir -p $(TOPDIR)lib/ + $(INSTALL) -d $(TOPDIR)lib/ $(AR) $(ARFLAGS) $(TOPDIR)lib/crti.o $(TOPDIR)lib/crtn.o: - mkdir -p $(TOPDIR)lib/ + $(INSTALL) -d $(TOPDIR)lib/ $(AR) $(ARFLAGS) $(TOPDIR)lib/crtn.o endif -- cgit v1.2.3