1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Update to 2.4.2.

This commit is contained in:
Joe Marcus Clarke 2003-11-10 19:50:28 +00:00
parent 6cad736824
commit 3631634036
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=93693
3 changed files with 2 additions and 27 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= yelp
PORTVERSION= 2.4.1
PORTVERSION= 2.4.2
CATEGORIES= x11 gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.4

View File

@ -1 +1 @@
MD5 (gnome2/yelp-2.4.1.tar.bz2) = d57cf454e5b11081cd451505939a9e84
MD5 (gnome2/yelp-2.4.2.tar.bz2) = ee89f4d0886f7c3be1b9f6894a57ec1b

View File

@ -1,25 +0,0 @@
--- src/info2html/main.c.orig Fri Oct 10 02:53:54 2003
+++ src/info2html/main.c Fri Oct 10 02:54:23 2003
@@ -125,11 +125,11 @@
for(i = 0; i < ndirs; i++) {
ext = "";
- buf = g_strdup_printf (buf, "%s/%s.info", dirs[i], args[0]);
+ buf = g_strdup_printf ("%s/%s.info", dirs[i], args[0]);
if(file_exists(buf))
break;
g_free (buf);
- buf = g_strdup_printf (buf, "%s/%s", dirs[i], args[0]);
+ buf = g_strdup_printf ("%s/%s", dirs[i], args[0]);
if(file_exists(buf)) {
no_info = TRUE;
break;
@@ -141,7 +141,7 @@
if(file_exists(buf))
break;
g_free (buf);
- buf = g_strdup_printf (buf, "%s/%s.gz", dirs[i], args[0]);
+ buf = g_strdup_printf ("%s/%s.gz", dirs[i], args[0]);
if(file_exists(buf)) {
no_info = TRUE;
break;