diff options
author | Marcoen Hirschberg <marcoen@gmail.com> | 2010-05-05 10:56:19 +0000 |
---|---|---|
committer | Marcoen Hirschberg <marcoen@gmail.com> | 2010-05-05 10:56:19 +0000 |
commit | 268f7c42f0d7128a4c88cb1c9b64b663dd266bf6 (patch) | |
tree | 4a8c0bca6b09f62e22529a443a005054e1043213 /rbutil | |
parent | e77550a52dd2abc5bf8967e607c303cfe33908e4 (diff) | |
download | rockbox-268f7c42f0d7128a4c88cb1c9b64b663dd266bf6.tar.gz rockbox-268f7c42f0d7128a4c88cb1c9b64b663dd266bf6.zip |
fix mkamsboot compilation on systems where 'make' is not 'GNU make' (FreeBSD for example)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25825 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil')
-rw-r--r-- | rbutil/mkamsboot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rbutil/mkamsboot/Makefile b/rbutil/mkamsboot/Makefile index 8ee44cd389..60e1ea8af8 100644 --- a/rbutil/mkamsboot/Makefile +++ b/rbutil/mkamsboot/Makefile | |||
@@ -38,7 +38,7 @@ all: $(OUTPUT) | |||
38 | LIBUCL=../../tools/ucl/src/libucl$(RBARCH).a | 38 | LIBUCL=../../tools/ucl/src/libucl$(RBARCH).a |
39 | 39 | ||
40 | $(LIBUCL): | 40 | $(LIBUCL): |
41 | make -C ../../tools/ucl/src $(TARGET_DIR)libucl$(RBARCH).a | 41 | $(MAKE) -C ../../tools/ucl/src $(TARGET_DIR)libucl$(RBARCH).a |
42 | 42 | ||
43 | # inputs | 43 | # inputs |
44 | LIBSOURCES := dualboot.c md5.c mkamsboot.c | 44 | LIBSOURCES := dualboot.c md5.c mkamsboot.c |