From ff23ecf6698ed48d18a612aadf1fbae64a47b207 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 18 Oct 2003 10:51:06 +0000 Subject: 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. --- ldso/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ldso/Makefile') 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 -- cgit v1.2.3