From owner-svn-ports-all@FreeBSD.ORG Mon Oct 29 10:27:25 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 007B1D72; Mon, 29 Oct 2012 10:27:24 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DB0C98FC0A; Mon, 29 Oct 2012 10:27:24 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9TAROtq040639; Mon, 29 Oct 2012 10:27:24 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9TAROpX040637; Mon, 29 Oct 2012 10:27:24 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210291027.q9TAROpX040637@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 29 Oct 2012 10:27:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306599 - head/x11-wm/e16utils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Oct 2012 10:27:25 -0000 Author: bapt Date: Mon Oct 29 10:27:24 2012 New Revision: 306599 URL: http://svn.freebsd.org/changeset/ports/306599 Log: Fix patch not being correctly applied on 8.3 Submitted by: "George L. Yermulnik" Feature safe: yes Modified: head/x11-wm/e16utils/Makefile Modified: head/x11-wm/e16utils/Makefile ============================================================================== --- head/x11-wm/e16utils/Makefile Mon Oct 29 10:18:13 2012 (r306598) +++ head/x11-wm/e16utils/Makefile Mon Oct 29 10:27:24 2012 (r306599) @@ -25,9 +25,9 @@ PLIST_FILES= bin/e16menuedit \ do-patch: .for i in ${SUB_STUBS} -.if exists(${PATCHDIR}/patch-${i}) - @cd ${WRKDIR}/${i} ; ${PATCH} -s < ${PATCHDIR}/patch-${i} -.endif + if [ -f "${PATCHDIR}/patch-${i}" ]; then \ + cd ${WRKDIR}/${i} ; ${PATCH} -s < ${PATCHDIR}/patch-${i} + fi .endfor do-configure: