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. --- libnsl/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libnsl') diff --git a/libnsl/Makefile b/libnsl/Makefile index 5f90e0c2b..37ac9eb09 100644 --- a/libnsl/Makefile +++ b/libnsl/Makefile @@ -32,9 +32,9 @@ $(LIBNSL): ar-target ar-target: $(OBJS) $(AR) $(ARFLAGS) $(LIBNSL) $(OBJS) - install -d $(TOPDIR)lib + $(INSTALL) -d $(TOPDIR)lib rm -f $(TOPDIR)lib/$(LIBNSL) - install -m 644 $(LIBNSL) $(TOPDIR)lib + $(INSTALL) -m 644 $(LIBNSL) $(TOPDIR)lib $(OBJS): %.o : %.c $(CC) $(CFLAGS) -c $< -o $@ @@ -47,9 +47,9 @@ shared: all -o $(LIBNSL_SHARED_FULLNAME) --whole-archive $(LIBNSL) \ --no-whole-archive $(TOPDIR)/libc/misc/internals/interp.o \ -L$(TOPDIR)/lib -lc; - install -d $(TOPDIR)lib + $(INSTALL) -d $(TOPDIR)lib rm -f $(TOPDIR)lib/$(LIBNSL_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBNSL_SHARED).$(MAJOR_VERSION) - install -m 644 $(LIBNSL_SHARED_FULLNAME) $(TOPDIR)lib; + $(INSTALL) -m 644 $(LIBNSL_SHARED_FULLNAME) $(TOPDIR)lib (cd $(TOPDIR)lib && ln -sf $(LIBNSL_SHARED_FULLNAME) $(LIBNSL_SHARED)); (cd $(TOPDIR)lib && ln -sf $(LIBNSL_SHARED_FULLNAME) $(LIBNSL_SHARED).$(MAJOR_VERSION)); -- cgit v1.2.3