From owner-freebsd-ports@FreeBSD.ORG Wed Jun 2 05:16:58 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B772B16A4CE for ; Wed, 2 Jun 2004 05:16:58 -0700 (PDT) Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A2DB43D5D for ; Wed, 2 Jun 2004 05:16:58 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (53c0ba06844b9ebd08a862863747ad63@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mta7.pltn13.pbi.net (8.12.10/8.12.10) with ESMTP id i52CGnYu006073 for ; Wed, 2 Jun 2004 05:16:49 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 00FB151A33; Wed, 2 Jun 2004 05:16:48 -0700 (PDT) Date: Wed, 2 Jun 2004 05:16:48 -0700 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20040602121648.GA51625@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="X1bOJ3K7DJ5YkBrT" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: INDEX patch X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jun 2004 12:16:58 -0000 --X1bOJ3K7DJ5YkBrT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable A previous commit to bsd.port.mk broke the reporting of missing dependencies from 'make index'. This patch restores it (and makes these errors fatal). I plan to commit it soon. Kris Index: Mk/bsd.port.mk =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.490 diff -u -r1.490 bsd.port.mk --- Mk/bsd.port.mk 31 May 2004 18:07:57 -0000 1.490 +++ Mk/bsd.port.mk 31 May 2004 19:00:02 -0000 @@ -4381,7 +4381,7 @@ .else @${ECHO_CMD} -n '** No Description' .endif - @${ECHO_CMD} "`perl -e ' \ + @perl -e ' \ if ( -f q{${DESCR}} ) { \ print q{|${DESCR}}; \ } else { \ @@ -4402,6 +4402,7 @@ push @$$i, $$_; \ } else { \ print STDERR qq{${PKGNAME}: \"$$_\" non-existent -- dependency list i= ncomplete\n}; \ + exit(1); \ } \ } \ } \ @@ -4421,7 +4422,7 @@ } \ } \ } \ - print qq{\n};'`" + print qq{\n};' .endif =20 www-site: Index: Mk/bsd.port.subdir.mk =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/Mk/bsd.port.subdir.mk,v retrieving revision 1.53 diff -u -r1.53 bsd.port.subdir.mk --- Mk/bsd.port.subdir.mk 2 Apr 2004 07:25:23 -0000 1.53 +++ Mk/bsd.port.subdir.mk 24 May 2004 00:40:50 -0000 @@ -220,9 +220,8 @@ if test -d ${.CURDIR}/$${sub}; then \ ${ECHO_MSG} "=3D=3D=3D> ${DIRPRFX}$${sub}"; \ cd ${.CURDIR}/$${sub}; \ - ${MAKE} -B describe 2> /dev/null || \ - (echo "=3D=3D=3D> ${DIRPRFX}$${sub} failed:" >&2 ; \ - cd ${.CURDIR}/$${sub}; ${MAKE} -B describe >&2; \ + ${MAKE} -B describe || \ + (echo "=3D=3D=3D> ${DIRPRFX}$${sub} failed" >&2; \ exit 1) ;\ else \ ${ECHO_MSG} "=3D=3D=3D> ${DIRPRFX}$${sub} non-existent"; \ --X1bOJ3K7DJ5YkBrT Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAvcUwWry0BWjoQKURAg1VAJ966FQfXFDuOraNQ8jGNHWv/oYuRACcDflL KV7d+Xu/7h9XfwTI0D96hE0= =aR0U -----END PGP SIGNATURE----- --X1bOJ3K7DJ5YkBrT--