Date: Mon, 29 Oct 2012 10:27:24 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306599 - head/x11-wm/e16utils Message-ID: <201210291027.q9TAROpX040637@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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" <yz@yz.kiev.ua> 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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210291027.q9TAROpX040637>