Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Jul 2011 22:52:26 -0500
From:      "RandomUser" <rannumgen@globaleyes.net>
To:        "FreeBSD gnats submit" <FreeBSD-gnats-submit@FreeBSD.org>
Subject:   ports/159128: www/rt40 Makefile contains one-character typo that causes installation to terminate
Message-ID:  <1311393146.1664@FreeBSD1.LocalNET10>
Resent-Message-ID: <201107230410.p6N4ACAN054056@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         159128
>Category:       ports
>Synopsis:       www/rt40 Makefile contains one-character typo that causes installation to terminate
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Jul 23 04:10:12 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator:     RandomUser
>Release:        FreeBSD 7.4-STABLE i386
>Organization:
>Environment:


System: FreeBSD 7.4-STABLE #31: Thu Jul  7 21:37:09 CDT 2011




>Description:


Installation attempts to copy the "RT_SiteConfig.pm-dist" file when it should be "RT_SiteConfig.pm.dist".
When the install process gets to this point (Makefile:post-install), the process ends with a non-zero return code,
and a message about the file "RT_SiteConfig.pm-dist" not existing.


>How-To-Repeat:





>Fix:


--- Makefile.udiffs begins here ---
--- Makefile.orig	2011-05-24 10:27:21.000000000 -0500
+++ Makefile	2011-07-22 15:18:08.000000000 -0500
@@ -199,7 +199,7 @@
 
 post-install:
 	@[ -f ${RT_ETC_PATH}/RT_SiteConfig.pm ] || \
-		${CP} -p ${RT_ETC_PATH}/RT_SiteConfig.pm-dist ${RT_ETC_PATH}/RT_SiteConfig.pm
+		${CP} -p ${RT_ETC_PATH}/RT_SiteConfig.pm.dist ${RT_ETC_PATH}/RT_SiteConfig.pm
 	${CAT} ${PKGMESSAGE}
 
 .include <bsd.port.post.mk>
--- Makefile.udiffs ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1311393146.1664>