Author: pebender
Date: Sat Aug 30 06:23:54 2008
New Revision: 3659
Added:
trunk/gar-minimyth/script/utils/which/files/which-2.20-broken.patch
Removed:
trunk/gar-minimyth/script/utils/which/files/which-2.19-broken.patch
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/utils/which/Makefile
trunk/gar-minimyth/script/utils/which/checksums
Log:
- Updated package
utils/which
Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt Sat Aug 30
06:23:54 2008
@@ -92,6 +92,7 @@
Updated utils/ed.
Updated utils/mktemp.
Updated utils/squashfs.
+ Updated utils/which.
--------------------------------------------------------------------------------
Changes since 56 (2008-08-06):
Modified: trunk/gar-minimyth/script/utils/which/Makefile
==============================================================================
--- trunk/gar-minimyth/script/utils/which/Makefile (original)
+++ trunk/gar-minimyth/script/utils/which/Makefile Sat Aug 30 06:23:54 2008
@@ -1,10 +1,10 @@
GARNAME = which
-GARVERSION = 2.19
+GARVERSION = 2.20
CATEGORIES = utils
MASTER_SITES = ftp://ftp.gnu.org/gnu/$(GARNAME)/
DISTFILES = $(DISTNAME).tar.gz
PATCHFILES = $(DISTNAME)-broken.patch
-LICENSE = GPL2
+LICENSE = GPL3
DESCRIPTION =
define BLURB
Modified: trunk/gar-minimyth/script/utils/which/checksums
==============================================================================
--- trunk/gar-minimyth/script/utils/which/checksums (original)
+++ trunk/gar-minimyth/script/utils/which/checksums Sat Aug 30 06:23:54 2008
@@ -1,2 +1,2 @@
-bbd094cec2444cd78befbc0cf09deea4 download/which-2.19.tar.gz
-d6f18d267d0d1a28ab3150037d8ddc33 download/which-2.19-broken.patch
+95be0501a466e515422cde4af46b2744 download/which-2.20.tar.gz
+c86742fbe33ce12897d1ae334c546785 download/which-2.20-broken.patch
Added: trunk/gar-minimyth/script/utils/which/files/which-2.20-broken.patch
==============================================================================
--- (empty file)
+++ trunk/gar-minimyth/script/utils/which/files/which-2.20-broken.patch Sat
Aug 30 06:23:54 2008
@@ -0,0 +1,15 @@
+diff -Naur which-2.20-old/tilde/tilde.c which-2.20-new/tilde/tilde.c
+--- which-2.20-old/tilde/tilde.c 2008-01-16 09:51:57.000000000 -0800
++++ which-2.20-new/tilde/tilde.c 2008-08-29 21:29:17.000000000 -0700
+@@ -196,7 +196,10 @@
+ int result_size, result_index;
+
+ result_index = result_size = 0;
+- if (result = strchr (string, '~'))
++
++ result = strchr (string, '~');
++
++ if (!result)
+ result = (char *)xmalloc (result_size = (strlen (string) + 16));
+ else
+ result = (char *)xmalloc (result_size = (strlen (string) + 1));
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---