From owner-p4-projects@FreeBSD.ORG Wed Jul 26 18:58:01 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 5ACCC16A4E0; Wed, 26 Jul 2006 18:58:01 +0000 (UTC) X-Original-To: perforce@FreeBSD.org Delivered-To: perforce@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C59A116A4DD for ; Wed, 26 Jul 2006 18:58:00 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5933843D77 for ; Wed, 26 Jul 2006 18:57:48 +0000 (GMT) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6QIvjrZ053369 for ; Wed, 26 Jul 2006 18:57:45 GMT (envelope-from gabor@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6QIvjYw053366 for perforce@freebsd.org; Wed, 26 Jul 2006 18:57:45 GMT (envelope-from gabor@FreeBSD.org) Date: Wed, 26 Jul 2006 18:57:45 GMT Message-Id: <200607261857.k6QIvjYw053366@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to gabor@FreeBSD.org using -f From: Gabor Kovesdan To: Perforce Change Reviews Cc: Subject: PERFORCE change 102483 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Jul 2006 18:58:01 -0000 http://perforce.freebsd.org/chv.cgi?CH=102483 Change 102483 by gabor@gabor_spitfire on 2006/07/26 18:57:24 Remove two hackery. These were to pass some pieces of data thorugh _ENV variables to the do-fetch target. This is don't needed anymore since they are set in the script itself. Affected files ... .. //depot/projects/soc2006/gabor_ports/Tools/scripts/do-fetch.sh#7 edit Differences ... ==== //depot/projects/soc2006/gabor_ports/Tools/scripts/do-fetch.sh#7 (text+ko) ==== @@ -176,23 +176,6 @@ fi done -### FIXME: those should be convert to be done in this script itself -# -# Hackery to enable simple fetch targets with several dynamic MASTER_SITES -# -_MASTER_SITES_ENV= _MASTER_SITES_DEFAULT="${_MASTER_SITES_DEFAULT}" -.for _F in ${DISTFILES} -_F_TEMP= ${_F:S/^${_F:C/:[^:]+$//}//:S/^://} -. if !empty(_F_TEMP) -. for _group in `${ECHO_CMD} ${_F_TEMP} | ${SED} "s/,/ /g"`; do -. if defined(_MASTER_SITES_${_group}) -_MASTER_SITES_ENV+= _MASTER_SITES_${_group}="${_MASTER_SITES_${_group}}" -. endif -. endfor -. endif -.endfor - -${_MASTER_SITES_ENV} for _file in ${DISTFILES}; do file=`${ECHO_CMD} $_file | ${SED} -E -e 's/:[^:]+$//'` select=`${ECHO_CMD} ${_file#${file}} | ${SED} -e 's/^://' -e 's/,/ /g'` @@ -374,22 +357,7 @@ fi done -### FIXME: this should be convert to be done in this script itself - -_PATCH_SITES_ENV= _PATCH_SITES_DEFAULT="${_PATCH_SITES_DEFAULT}" -.for _F in ${PATCHFILES} -_F_TEMP= ${_F:S/^${_F:C/:[^:]+$//}//:S/^://} -. if !empty(_F_TEMP) -. for _group in `${ECHO_CMD} ${_F_TEMP} | ${SED} "s/,/ /g"`; do -. if defined(_PATCH_SITES_${_group}) -_PATCH_SITES_ENV+= _PATCH_SITES_${_group}="${_PATCH_SITES_${_group}}" -. endif -. endfor -. endif -.endfor - cd ${_DISTDIR} - ${_PATCH_SITES_ENV} for _file in ${PATCHFILES}; do file=`${ECHO_CMD} $_file | ${SED} -E -e 's/:[^:]+$$//'` select=`${ECHO_CMD} ${_file#${file}} | ${SED} -e 's/^://' -e 's/,/ /g'`