openbsd-ports/x11/gnustep/zipper/patches/patch-Preferences_m
sebastia 91ec19533d Import Zipper: Zipper is a tool for inspecting compressed archvies. It integrates with the GWorkspace desktop.
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@
2011-07-19 13:58:02 +00:00

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;
}