summaryrefslogtreecommitdiff
path: root/ldso/libdl/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-10-18 10:07:43 +0000
committerEric Andersen <andersen@codepoet.org>2003-10-18 10:07:43 +0000
commit49f0dd0fcb64746b1ef06e094f2fa8091c23637c (patch)
tree86f964fdcaea6ec3da6036b8f68aff37f4f4dc7b /ldso/libdl/Makefile
parent1381777907fbd50582e7a5ecd950ca26ca56b26f (diff)
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.
Diffstat (limited to 'ldso/libdl/Makefile')
-rw-r--r--ldso/libdl/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/ldso/libdl/Makefile b/ldso/libdl/Makefile
index 00142a8f2..a0358feea 100644
--- a/ldso/libdl/Makefile
+++ b/ldso/libdl/Makefile
@@ -60,9 +60,9 @@ $(LIBDL): ar-target
ar-target: $(OBJS) $(PIC_OBJS)
$(AR) $(ARFLAGS) $(LIBDL) ../ldso/$(TARGET_ARCH)/resolve.o $(OBJS)
$(AR) $(ARFLAGS) $(LIBDL_PIC) $(PIC_OBJS)
- install -d $(TOPDIR)lib
+ $(INSTALL) -d $(TOPDIR)lib
rm -f $(TOPDIR)lib/$(LIBDL)
- install -m 644 $(LIBDL) $(TOPDIR)lib
+ $(INSTALL) -m 644 $(LIBDL) $(TOPDIR)lib
dlib.o: dlib.c
@@ -80,9 +80,9 @@ shared:
-o $(LIBDL_SHARED_FULLNAME) --whole-archive $(LIBDL_PIC) \
--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/$(LIBDL_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBDL_SHARED).$(MAJOR_VERSION)
- install -m 644 $(LIBDL_SHARED_FULLNAME) $(TOPDIR)lib;
+ $(INSTALL) -m 644 $(LIBDL_SHARED_FULLNAME) $(TOPDIR)lib
(cd $(TOPDIR)lib && ln -sf $(LIBDL_SHARED_FULLNAME) $(LIBDL_SHARED));
(cd $(TOPDIR)lib && ln -sf $(LIBDL_SHARED_FULLNAME) $(LIBDL_SHARED).$(MAJOR_VERSION));