Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 Jan 2006 10:58:46 GMT
From:      Renato Botelho <garga@FreeBSD.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/92355: PATCH: Mk/bsd.port.mk: Include bsd.tcl.mk if USE_TCL_BUILD is defined
Message-ID:  <200601261058.k0QAwkFO095656@freefall.freebsd.org>
Resent-Message-ID: <200601261100.k0QB0GUe095721@freefall.freebsd.org>

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

>Number:         92355
>Category:       ports
>Synopsis:       PATCH: Mk/bsd.port.mk: Include bsd.tcl.mk if USE_TCL_BUILD is defined
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Thu Jan 26 11:00:15 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Renato Botelho
>Release:        FreeBSD 6.0-STABLE i386
>Organization:
>Environment:
System: FreeBSD freefall.freebsd.org 6.0-STABLE FreeBSD 6.0-STABLE #0: Sat Dec 10 03:18:20 UTC 2005 kensmith@freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL i386


	
>Description:
If you set USE_TCL_BUILD on a port, bsd.tcl.mk is not included and it
doesn't work.
>How-To-Repeat:
	
>Fix:

	

--- bsd.port.mk.diff begins here ---
Index: bsd.port.mk
===================================================================
RCS file: /home/pcvs/ports/Mk/bsd.port.mk,v
retrieving revision 1.523
diff -u -r1.523 bsd.port.mk
--- bsd.port.mk	23 Jan 2006 22:29:26 -0000	1.523
+++ bsd.port.mk	26 Jan 2006 10:53:22 -0000
@@ -1374,7 +1374,7 @@
 .include "${PORTSDIR}/Mk/bsd.ruby.mk"
 .endif
 
-.if defined(USE_TCL) || defined(USE_TK)
+.if defined(USE_TCL) || defined(USE_TCL_BUILD) || defined(USE_TK)
 .include "${PORTSDIR}/Mk/bsd.tcl.mk"
 .endif
 
@@ -1821,7 +1821,7 @@
 .include "${PORTSDIR}/Mk/bsd.python.mk"
 .endif
 
-.if defined(USE_TCL) || defined(USE_TK)
+.if defined(USE_TCL) || defined(USE_TCL_BUILD) || defined(USE_TK)
 .include "${PORTSDIR}/Mk/bsd.tcl.mk"
 .endif
 
--- bsd.port.mk.diff ends here ---


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



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