aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMemphiz <memphis@machzwo.de>2015-12-21 10:01:25 +0100
committerMemphiz <memphis@machzwo.de>2016-01-06 15:52:05 +0100
commit8cb8190872c6d87bd193ed5a3e207907b67e9ddf (patch)
treecc53200ad7b8fd6de5cce8507a342cb688c399e3 /tools
parentedc08ce032f567fc93348fb3df4698df8326439d (diff)
[depends/TexturePacker] - don't fail on already existing link
Diffstat (limited to 'tools')
-rw-r--r--tools/depends/native/TexturePacker/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/depends/native/TexturePacker/Makefile b/tools/depends/native/TexturePacker/Makefile
index 26ea13e061..5faeafc9c0 100644
--- a/tools/depends/native/TexturePacker/Makefile
+++ b/tools/depends/native/TexturePacker/Makefile
@@ -51,7 +51,7 @@ $(APP): $(PLATFORM)
#TEMP workaround for skins: create legacy link. Remove me when skins are fixed
@mkdir -p $(XBMCROOT)/tools/TexturePacker
@[ -f $(XBMCROOT)/tools/TexturePacker/TexturePacker ] && rm $(XBMCROOT)/tools/TexturePacker/TexturePacker || :
- @ln -s $(APPBIN) $(XBMCROOT)/tools/TexturePacker/TexturePacker
+ @ln -sf $(APPBIN) $(XBMCROOT)/tools/TexturePacker/TexturePacker
@echo "all:" > $(XBMCROOT)/tools/TexturePacker/Makefile
@echo "\t@echo "WARNING: use of tools/TexturePacker/TexturePacker is deprecated, please update your skins Makefile"" >> $(XBMCROOT)/tools/TexturePacker/Makefile