Date: Mon, 5 Nov 2012 22:34:58 +0000 (UTC) From: Adam Weinberger <adamw@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r307043 - head/x11-wm/e16utils Message-ID: <201211052234.qA5MYwOa005035@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adamw Date: Mon Nov 5 22:34:58 2012 New Revision: 307043 URL: http://svnweb.freebsd.org/changeset/ports/307043 Log: Add missing semicolon, newline escapes, that sort of thing, to fix build. Feature safe: yes Modified: head/x11-wm/e16utils/Makefile Modified: head/x11-wm/e16utils/Makefile ============================================================================== --- head/x11-wm/e16utils/Makefile Mon Nov 5 22:30:28 2012 (r307042) +++ head/x11-wm/e16utils/Makefile Mon Nov 5 22:34:58 2012 (r307043) @@ -26,7 +26,7 @@ PLIST_FILES= bin/e16menuedit \ do-patch: .for i in ${SUB_STUBS} if [ -f "${PATCHDIR}/patch-${i}" ]; then \ - cd ${WRKDIR}/${i} ; ${PATCH} -s < ${PATCHDIR}/patch-${i} + cd ${WRKDIR}/${i} ; ${PATCH} -s < ${PATCHDIR}/patch-${i}; \ fi .endfor
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211052234.qA5MYwOa005035>