summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2013-09-18 13:05:29 +0200
committerAmaury Pouly <amaury.pouly@gmail.com>2013-09-18 13:14:20 +0200
commit27433076e9db3d47556a346a589bace52977f864 (patch)
treedbb904a919f57e6f13aae99850c6cc9a2270db7a
parentafd85634a01f20f1f6d7f1a8d1685e0d1506a5f2 (diff)
downloadrockbox-27433076e9db3d47556a346a589bace52977f864.tar.gz
rockbox-27433076e9db3d47556a346a589bace52977f864.zip
tcctool: fix Makefile
The version.sh tool tries to locate the repository root if no argument is given but it doesn't really work. Instead explicitely give it the path to the root. Change-Id: Ie3a35cb3d41bbd8819823358763f714ad045527e
-rw-r--r--utils/tcctool/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/tcctool/Makefile b/utils/tcctool/Makefile
index 7258f2f8cd..88d59bda60 100644
--- a/utils/tcctool/Makefile
+++ b/utils/tcctool/Makefile
@@ -2,7 +2,7 @@
2ROMFILE=player.rom 2ROMFILE=player.rom
3 3
4ifndef VERSION 4ifndef VERSION
5VERSION=$(shell ../../tools/version.sh) 5VERSION=$(shell ../../tools/version.sh ../../)
6endif 6endif
7 7
8CFLAGS=-Wall -W -I/usr/local/include -DVERSION=\"$(VERSION)\" 8CFLAGS=-Wall -W -I/usr/local/include -DVERSION=\"$(VERSION)\"