diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-20 03:48:34 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-20 03:48:34 -0700 |
commit | 407564b5683493323368fbbb22850d67b47e4743 (patch) | |
tree | abd4dcfd7f48c676ff81c6313882942a11ca5013 /Sources.mm | |
parent | e1b682c524a0933c77e607a3a30ac7627b66ee46 (diff) |
Use System_, not Firmware_, for APT repository.
Diffstat (limited to 'Sources.mm')
-rw-r--r-- | Sources.mm | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -45,7 +45,7 @@ extern _H<NSMutableDictionary> Sources_; extern _H<NSString> CydiaSource_; -extern _H<NSString> Firmware_; +extern _H<NSString> System_; extern bool Changed_; void CydiaWriteSources() { @@ -53,8 +53,8 @@ void CydiaWriteSources() { _assert(file != NULL); NSString *distribution(@"ios"); - if (Firmware_ != nil) - distribution = [distribution stringByAppendingString:[NSString stringWithFormat:@"/%@", (id) Firmware_]]; + if (System_ != nil) + distribution = [distribution stringByAppendingString:[NSString stringWithFormat:@"/%@", (id) System_]]; fprintf(file, "deb http://%s/ %s main\n", [CydiaSource_ UTF8String], |