diff options
author | bapt <bapt@FreeBSD.org> | 2012-10-29 18:27:24 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2012-10-29 18:27:24 +0800 |
commit | 50e5e4da84fcb9089be8c469baceac07923a9880 (patch) | |
tree | fbcea722143803a95b61e1554555a5a462355a70 /x11-wm | |
parent | 32921e23f8983c883b55a6d3802d363317da4bc1 (diff) | |
download | freebsd-ports-gnome-50e5e4da84fcb9089be8c469baceac07923a9880.tar.gz freebsd-ports-gnome-50e5e4da84fcb9089be8c469baceac07923a9880.tar.zst freebsd-ports-gnome-50e5e4da84fcb9089be8c469baceac07923a9880.zip |
Fix patch not being correctly applied on 8.3
Submitted by: "George L. Yermulnik" <yz@yz.kiev.ua>
Feature safe: yes
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/e16utils/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-wm/e16utils/Makefile b/x11-wm/e16utils/Makefile index 16e4ac96015d..904adb25483e 100644 --- a/x11-wm/e16utils/Makefile +++ b/x11-wm/e16utils/Makefile @@ -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: |