From 76c1cde00734098b9444f1fec52e47edc5263a0b Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 20 Apr 2006 11:56:51 +0000 Subject: use 'ar' and 'ranlib' and not the variables that may be set to the cross-compiled versions! git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9742 a1c6a512-1295-4272-9138-f99709370657 --- tools/ucl/src/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tools/ucl/src/Makefile b/tools/ucl/src/Makefile index 1a8bf714fa..4481550dfc 100644 --- a/tools/ucl/src/Makefile +++ b/tools/ucl/src/Makefile @@ -18,10 +18,11 @@ OBJS = alloc.o io.o n2b_99.o n2b_d.o n2b_ds.o n2b_to.o n2d_99.o \ n2d_d.o n2d_ds.o n2d_to.o n2e_99.o n2e_d.o n2e_ds.o n2e_to.o ucl_crc.o \ ucl_dll.o ucl_init.o ucl_ptr.o ucl_str.o ucl_util.o +# we don't use $(AR) and $(RANLIB) below since we want the _native_ tools +# not the cross-compiler tools $(TARGET): $(OBJS) - $(SILENT)$(AR) ruv $@ $(OBJS) >/dev/null 2>&1 - $(SILENT)$(RANLIB) $@ - + $(SILENT)ar ruv $@ $(OBJS) >/dev/null 2>&1 + $(SILENT)ranlib $@ clean: rm -f $(OBJS) $(TARGET) -- cgit