diff options
author | bapt <bapt@FreeBSD.org> | 2016-11-20 20:45:36 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2016-11-20 20:45:36 +0800 |
commit | fd7edf5c792135b444fc1e4e06fc771ad91f0a1c (patch) | |
tree | a054912b69950afafc924231c3c5d681e0ee1d1c | |
parent | b5987f67960316f2609b3e98a62ba0bbcfc44ae1 (diff) | |
download | freebsd-ports-gnome-fd7edf5c792135b444fc1e4e06fc771ad91f0a1c.tar.gz freebsd-ports-gnome-fd7edf5c792135b444fc1e4e06fc771ad91f0a1c.tar.zst freebsd-ports-gnome-fd7edf5c792135b444fc1e4e06fc771ad91f0a1c.zip |
Use @post[un]exec instead of deprecated @[un]exec which is deprecated
Do not bump portrevision as it does not change the final package
-rw-r--r-- | editors/libreoffice/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/libreoffice/Makefile b/editors/libreoffice/Makefile index 68486e1dac8c..aeec48e5be3d 100644 --- a/editors/libreoffice/Makefile +++ b/editors/libreoffice/Makefile @@ -312,8 +312,8 @@ post-install-SDK-on: add-plist-gnome: .for subdir in gnome hicolor locolor @${ECHO_CMD} "@rmtry share/icons/${subdir}/icon-theme.cache" >> ${TMPPLIST} - @${ECHO_CMD} "@exec ${LOCALBASE}/bin/gtk-update-icon-cache -q -f %D/share/icons/${subdir} 2>/dev/null || ${TRUE}" >> ${TMPPLIST} - @${ECHO_CMD} "@unexec ${LOCALBASE}/bin/gtk-update-icon-cache -q -f %D/share/icons/${subdir} 2>/dev/null || ${TRUE}" >> ${TMPPLIST} + @${ECHO_CMD} "@postexec ${LOCALBASE}/bin/gtk-update-icon-cache -q -f %D/share/icons/${subdir} 2>/dev/null || ${TRUE}" >> ${TMPPLIST} + @${ECHO_CMD} "@postunexec ${LOCALBASE}/bin/gtk-update-icon-cache -q -f %D/share/icons/${subdir} 2>/dev/null || ${TRUE}" >> ${TMPPLIST} .endfor .include <bsd.port.post.mk> |