From owner-svn-soc-all@FreeBSD.ORG Wed Jun 27 15:04:03 2012 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id B3C5A1065670 for ; Wed, 27 Jun 2012 15:04:01 +0000 (UTC) (envelope-from scher@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Wed, 27 Jun 2012 15:04:01 +0000 Date: Wed, 27 Jun 2012 15:04:01 +0000 From: scher@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20120627150401.B3C5A1065670@hub.freebsd.org> Cc: Subject: socsvn commit: r238398 - soc2012/scher/par_ports/head/Mk X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Jun 2012 15:04:03 -0000 Author: scher Date: Wed Jun 27 15:04:01 2012 New Revision: 238398 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=238398 Log: [bugfix] Fixes the following issue: ===> Applying FreeBSD patches for python27-2.7.3_2 Syntax error: "elif" unexpected (expecting "fi") *** Error code 2 Modified: soc2012/scher/par_ports/head/Mk/bsd.port.mk Modified: soc2012/scher/par_ports/head/Mk/bsd.port.mk ============================================================================== --- soc2012/scher/par_ports/head/Mk/bsd.port.mk Wed Jun 27 14:54:33 2012 (r238397) +++ soc2012/scher/par_ports/head/Mk/bsd.port.mk Wed Jun 27 15:04:01 2012 (r238398) @@ -5328,10 +5328,11 @@ ${ECHO_MSG} " => No directory for $$lib. Skipping.."; \ else \ ${_INSTALL_DEPENDS} \ - if [ !${_parv_WANT_PARALLEL_BUILD} ]; then \ + if ! [ ${_parv_WANT_PARALLEL_BUILD} ]; then \ if ! ${LDCONFIG} ${_LDCONFIG_FLAGS} -r | ${GREP} -vwF -e "${PKGCOMPATDIR}" | ${GREP} -qwE -e "-l$$pattern"; then \ - ${ECHO_MSG} "Error: shared library \"$$lib\" does not exist"; \ - ${FALSE}; \ + ${ECHO_MSG} "Error: shared library \"$$lib\" does not exist"; \ + ${FALSE}; \ + fi; \ fi; \ if [ $${spawned} ]; then \ echo "---- dependency output ----- : SPAWNED PID $${spawned}"; \