From 4b5152b36106aedcbeb844169b3d92a59dcf47e9 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 14 Oct 2002 07:20:58 +0000 Subject: Patch from Christian MICHON to reimplement my little initfini.pl script in awk. This eliminates uClibc's compile-time dependancy on perl, and lets us use the much lighter weight awk, which facilitates building uClibc standalone environments. --- libc/sysdeps/linux/common/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc/sysdeps/linux/common') diff --git a/libc/sysdeps/linux/common/Makefile b/libc/sysdeps/linux/common/Makefile index 984ba8dfc..79bccadf0 100644 --- a/libc/sysdeps/linux/common/Makefile +++ b/libc/sysdeps/linux/common/Makefile @@ -63,8 +63,8 @@ $(COBJS): %.o : %.c initfini.s: initfini.c $(CC) $(SAFECFLAGS) -I$(TOPDIR)include -c initfini.c -S -o initfini.s -crti.S crtn.S: initfini.s $(TOPDIR)/extra/scripts/initfini.pl - $(TOPDIR)/extra/scripts/initfini.pl +crti.S crtn.S: initfini.s $(TOPDIR)/extra/scripts/initfini.awk + $(TOPDIR)/extra/scripts/initfini.awk initfini.s crti.o: crti.S $(CC) $(SAFECFLAGS) -c crti.S -o crti.o -- cgit v1.2.3