freemyipod r354 - Code Review

Jump to: navigation, search
Repository:freemyipod
Revision:r353‎ | r354 | r355 >
Date:03:15, 20 December 2010
Author:theseven
Status:new
Tags:
Comment:
iLoader: Fix theme zip file generation on windows
Modified paths:
  • /apps/iloader/themes/default-fastboot/Makefile (modified) (history)
  • /apps/iloader/themes/default/Makefile (modified) (history)

Diff [purge]

Index: apps/iloader/themes/default-fastboot/Makefile
@@ -18,7 +18,11 @@
1919 $(ZIPFILE): $(ASSETS) $(CONFIG)
2020 @echo [ZIP] $@
2121 @rm -f $(ZIPFILE)
 22+ifeq ($(shell uname),WindowsNT)
 23+ @$(ZIP) $@ iLoader
 24+else
2225 @$(ZIP) --exclude='*/.svn/*' $@ iLoader
 26+endif
2327
2428 $(CONFIG): $(CONFIGSRC)
2529 @echo [CCONF] $<
Index: apps/iloader/themes/default/Makefile
@@ -18,7 +18,11 @@
1919 $(ZIPFILE): $(ASSETS) $(CONFIG)
2020 @echo [ZIP] $@
2121 @rm -f $(ZIPFILE)
 22+ifeq ($(shell uname),WindowsNT)
 23+ @$(ZIP) $@ iLoader
 24+else
2225 @$(ZIP) --exclude='*/.svn/*' $@ iLoader
 26+endif
2327
2428 $(CONFIG): $(CONFIGSRC)
2529 @echo [CCONF] $<