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. --- libc/misc/locale/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/misc/locale/Makefile') diff --git a/libc/misc/locale/Makefile b/libc/misc/locale/Makefile index 752f0aa0f..75fa56a78 100644 --- a/libc/misc/locale/Makefile +++ b/libc/misc/locale/Makefile @@ -60,7 +60,7 @@ $(MOBJx): $(MSRC) $(STRIPTOOL) -x -R .note -R .comment $*.o locale_data.o: - ln -sf ../../../extra/locale/locale_data.c + $(LN) -sf ../../../extra/locale/locale_data.c $(CC) $(CFLAGS) -c -D__WCHAR_ENABLED -I../../../extra/locale locale_data.c -o $@ $(STRIPTOOL) -x -R .note -R .comment $*.o -- cgit v1.2.3