summaryrefslogtreecommitdiffstats
path: root/tools/ucl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-04-20 11:56:51 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-04-20 11:56:51 +0000
commit76c1cde00734098b9444f1fec52e47edc5263a0b (patch)
treeb91d2ba597aafdd7235d37e119bc3f820e86b1ff /tools/ucl
parentdb80a3981d85db43152d4920c11a71e0cfa7d84f (diff)
downloadrockbox-76c1cde00734098b9444f1fec52e47edc5263a0b.tar.gz
rockbox-76c1cde00734098b9444f1fec52e47edc5263a0b.zip
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
Diffstat (limited to 'tools/ucl')
-rw-r--r--tools/ucl/src/Makefile7
1 files 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)