diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2010-12-14 14:50:42 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-01-01 14:32:07 -0800 |
commit | d1ba8fd35b8ff678f11f783e0329495f991714e5 (patch) | |
tree | 77474cfa41c9da16467f57af3dfeefabc7fc328d /makefile | |
parent | c1d8d92111342b3729c40e712a0f189dc0ee90a9 (diff) |
Use dpkg-deb -z to specify compression type.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -12,8 +12,16 @@ endif flags := link := -#dpkg := /Library/Cydia/bin/dpkg-deb -Zlzma +ifeq (o,O) # gzip is actually better +dpkg := /Library/Cydia/bin/dpkg-deb +ifeq ($(wildcard $(dpkg)),$(dpkg)) +dpkg := $(dpkg) -zlzma +else +dpkg := dpkg-deb -zbzip2 +endif +else dpkg := dpkg-deb +endif sdk := $(sdks)/iPhoneOS$(ios).sdk |