Zipper consists only of a single window, displaying the contents of the selected archive. Currently, you can view and extract .tar, .tar.gz, .tar.bz2, .rar, .lha, .lhz, .zip and .7z archives. Further it allows to create .tar.gz archives. OK landry@
16 lines
462 B
Plaintext
16 lines
462 B
Plaintext
$OpenBSD: patch-Preferences_m,v 1.1.1.1 2011/07/19 13:58:02 sebastia Exp $
|
|
|
|
default to use GNU tar
|
|
|
|
--- Preferences.m.orig Wed Apr 27 19:11:12 2011
|
|
+++ Preferences.m Wed Apr 27 19:11:34 2011
|
|
@@ -69,7 +69,7 @@ static NSMutableDictionary *_extensionMapping = nil;
|
|
if (tar == nil)
|
|
{
|
|
// search the PATH
|
|
- tar = [[NSFileManager defaultManager] locateExecutable:@"tar"];
|
|
+ tar = [[NSFileManager defaultManager] locateExecutable:@"gtar"];
|
|
}
|
|
return tar;
|
|
}
|