From owner-freebsd-hackers Tue Jan 6 09:00:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA29877 for hackers-outgoing; Tue, 6 Jan 1998 09:00:17 -0800 (PST) (envelope-from owner-freebsd-hackers@FreeBSD.ORG) Received: from TomQNX.tomqnx.com (ott-pm6-09.comnet.ca [206.75.140.169]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id IAA29723 for ; Tue, 6 Jan 1998 08:59:50 -0800 (PST) (envelope-from tom@tomqnx.com) Received: from tomqnx.com by TomQNX.tomqnx.com with esmtp (Smail3.2 #1) id m0xpcHy-000A9JC; Tue, 6 Jan 1998 11:55:38 -0500 (EST) Message-ID: <34B26208.773F9E85@tomqnx.com> Date: Tue, 06 Jan 1998 11:55:36 -0500 From: Tom Torrance X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 2.2.5-STABLE i386) MIME-Version: 1.0 To: freebsd-hackers@FreeBSD.ORG Subject: bsd.port.mk error Content-Type: multipart/mixed; boundary="------------CDD5838AB72404ACF6CDC16F" Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk This is a multi-part message in MIME format. --------------CDD5838AB72404ACF6CDC16F Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit There is a minor error which prevents over-riding the existance in distfiles of a corrupt file to force downloading of the latest version. The attached diff fixes it. The 'tix' distribution on my 2.2.5R cdrom was corrupt. -- mailto:tomNO@SPAMtomqnx.com Tom Torrance 27 Dayton Cr., Nepean Ont., Canada K2H 7N8 My opinions are personal, and not those of my employer. --------------CDD5838AB72404ACF6CDC16F Content-Type: text/plain; charset=us-ascii; name="dist" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="dist" *** /usr/src/share/mk/bsd.port.mk Fri Jan 2 12:47:01 1998 --- bsd.port.mk Tue Jan 6 11:25:43 1998 *************** *** 620,627 **** # Search CDROM first if mounted, symlink instead of copy if # FETCH_SYMLINK_DISTFILES is set .if exists(/cdrom/ports/distfiles) ! MASTER_SITES:= file:/cdrom/ports/distfiles/${DIST_SUBDIR}/ ${MASTER_SITES} ! PATCH_SITES:= file:/cdrom/ports/distfiles/${DIST_SUBDIR}/ ${PATCH_SITES} .if defined(FETCH_SYMLINK_DISTFILES) FETCH_BEFORE_ARGS+= -l .endif --- 620,627 ---- # Search CDROM first if mounted, symlink instead of copy if # FETCH_SYMLINK_DISTFILES is set .if exists(/cdrom/ports/distfiles) ! MASTER_SITES:= file:${PORTSDIR}/distfiles/${DIST_SUBDIR}/ ${MASTER_SITES} ! PATCH_SITES:= file:${PORTSDIR}/distfiles/${DIST_SUBDIR}/ ${PATCH_SITES} .if defined(FETCH_SYMLINK_DISTFILES) FETCH_BEFORE_ARGS+= -l .endif --------------CDD5838AB72404ACF6CDC16F--