diff options
author | adamw <adamw@FreeBSD.org> | 2012-11-05 22:34:58 +0000 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2012-11-05 22:34:58 +0000 |
commit | 11827c3d1de4f19ac7b792d7ed08018a1cbcfff1 (patch) | |
tree | a90164d8a747045a234ffce1714518d90f548d44 | |
parent | aaff1562ca1a28e2bda7ec224784565f8339b140 (diff) | |
download | FreeBSD-ports-11827c3d1de4f19ac7b792d7ed08018a1cbcfff1.zip FreeBSD-ports-11827c3d1de4f19ac7b792d7ed08018a1cbcfff1.tar.gz |
Add missing semicolon, newline escapes, that sort of thing, to
fix build.
Feature safe: yes
-rw-r--r-- | x11-wm/e16utils/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11-wm/e16utils/Makefile b/x11-wm/e16utils/Makefile index 904adb2..3201f75 100644 --- a/x11-wm/e16utils/Makefile +++ b/x11-wm/e16utils/Makefile @@ -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 |