summaryrefslogtreecommitdiff
path: root/ldso/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-10-18 10:51:06 +0000
committerEric Andersen <andersen@codepoet.org>2003-10-18 10:51:06 +0000
commitff23ecf6698ed48d18a612aadf1fbae64a47b207 (patch)
tree8f13b2280bd747935544e270907ec25002901341 /ldso/Makefile
parentdd3fb0f8c1c10fcee804f11a4eed84316c5f694b (diff)
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.
Diffstat (limited to 'ldso/Makefile')
-rw-r--r--ldso/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/ldso/Makefile b/ldso/Makefile
index 44a4456ca..d4e16ec91 100644
--- a/ldso/Makefile
+++ b/ldso/Makefile
@@ -44,10 +44,10 @@ utils:
$(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