diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2008-04-23 01:20:39 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2008-04-23 01:20:39 +0800 |
commit | 98ef3b3e3eb206d48597ae8a9d4517133af477f2 (patch) | |
tree | a5428fe3630e1552d03d3b0c26c739f71afaa3c2 /archivers/file-roller/files | |
parent | 426be3c56f15380342725777368423e3118808e6 (diff) | |
download | marcuscom-ports-98ef3b3e3eb206d48597ae8a9d4517133af477f2.tar marcuscom-ports-98ef3b3e3eb206d48597ae8a9d4517133af477f2.tar.gz marcuscom-ports-98ef3b3e3eb206d48597ae8a9d4517133af477f2.tar.bz2 marcuscom-ports-98ef3b3e3eb206d48597ae8a9d4517133af477f2.tar.lz marcuscom-ports-98ef3b3e3eb206d48597ae8a9d4517133af477f2.tar.xz marcuscom-ports-98ef3b3e3eb206d48597ae8a9d4517133af477f2.tar.zst marcuscom-ports-98ef3b3e3eb206d48597ae8a9d4517133af477f2.zip |
Update to 2.23.1
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@10890 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'archivers/file-roller/files')
-rw-r--r-- | archivers/file-roller/files/patch-src_fr-command-tar.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/archivers/file-roller/files/patch-src_fr-command-tar.c b/archivers/file-roller/files/patch-src_fr-command-tar.c new file mode 100644 index 000000000..78843a28c --- /dev/null +++ b/archivers/file-roller/files/patch-src_fr-command-tar.c @@ -0,0 +1,12 @@ +--- src/fr-command-tar.c.orig Sun Oct 15 12:33:56 2006 ++++ src/fr-command-tar.c Mon Oct 16 19:18:03 2006 +@@ -231,6 +231,9 @@ + #if defined (__SVR4) && defined (__sun) + if (g_file_test ("/usr/sfw/bin/gtar", G_FILE_TEST_IS_EXECUTABLE)) + command = g_strdup ("/usr/sfw/bin/gtar"); ++#elif defined(__FreeBSD__) ++ if (g_file_test ("%%LOCALBASE%%/bin/gtar", G_FILE_TEST_IS_EXECUTABLE)) ++ command = g_strdup ("%%LOCALBASE%%/bin/gtar"); + #endif + if (command != NULL) + fr_process_begin_command (comm->process, command); |