diff options
author | mat <mat@FreeBSD.org> | 2016-10-21 20:51:40 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-10-21 20:51:40 +0800 |
commit | 316cf6317eb621c4567d3b8e337fa9ba3097ea56 (patch) | |
tree | 5b70e6802d6d9dfe8b4564fc4f09f2d0a5156343 /x11-themes | |
parent | 5b45061f15be292aed8143f0ec15163936e69baf (diff) | |
download | freebsd-ports-gnome-316cf6317eb621c4567d3b8e337fa9ba3097ea56.tar.gz freebsd-ports-gnome-316cf6317eb621c4567d3b8e337fa9ba3097ea56.tar.zst freebsd-ports-gnome-316cf6317eb621c4567d3b8e337fa9ba3097ea56.zip |
${RM} already has -f.
PR: 213570
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/adwaita-icon-theme/Makefile | 4 | ||||
-rw-r--r-- | x11-themes/gtk-digital-harmony-theme/Makefile | 2 | ||||
-rw-r--r-- | x11-themes/gtk-equinox-engine/Makefile | 2 | ||||
-rw-r--r-- | x11-themes/openbox-themes/Makefile | 2 | ||||
-rw-r--r-- | x11-themes/sawfish-themes/Makefile | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/x11-themes/adwaita-icon-theme/Makefile b/x11-themes/adwaita-icon-theme/Makefile index b825dbe7e602..b806aa6e0d27 100644 --- a/x11-themes/adwaita-icon-theme/Makefile +++ b/x11-themes/adwaita-icon-theme/Makefile @@ -17,7 +17,7 @@ CONFIGURE_ENV= ac_cv_path_GTK_ENCODE_SYMBOLIC_SVG="false" INSTALLS_ICONS= yes post-install: - @${RM} -rf ${STAGEDIR}${PREFIX}/lib/locale - @${RM} -rf ${STAGEDIR}${PREFIX}/locale + @${RM} -r ${STAGEDIR}${PREFIX}/lib/locale + @${RM} -r ${STAGEDIR}${PREFIX}/locale .include <bsd.port.mk> diff --git a/x11-themes/gtk-digital-harmony-theme/Makefile b/x11-themes/gtk-digital-harmony-theme/Makefile index 28c4e161872c..f84ea4d0af11 100644 --- a/x11-themes/gtk-digital-harmony-theme/Makefile +++ b/x11-themes/gtk-digital-harmony-theme/Makefile @@ -28,7 +28,7 @@ PLIST_SUB+= GTK20="@comment " METACITY="" .endif post-extract: - @${RM} -rf ${WRKSRC}/gtk-2.0/Scrollbars/Backup \ + @${RM} -r ${WRKSRC}/gtk-2.0/Scrollbars/Backup \ ${WRKSRC}/gtk-2.0/ReadME.txt @${FIND} ${WRKSRC} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 diff --git a/x11-themes/gtk-equinox-engine/Makefile b/x11-themes/gtk-equinox-engine/Makefile index 66dd255df0c4..7dfd31be9e82 100644 --- a/x11-themes/gtk-equinox-engine/Makefile +++ b/x11-themes/gtk-equinox-engine/Makefile @@ -41,7 +41,7 @@ ANIMATION_CONFIGURE_ENABLE= animation post-patch: @${FIND} ${WRKDIR} -name 'gtkrc' -exec \ ${REINPLACE_CMD} -e 's!^include "apps/nautilus\.rc"!#&!' {} + - @${FIND} ${WRKDIR} -type f -name 'gtkrc.bak' -exec ${RM} -f {} + + @${FIND} ${WRKDIR} -type f -name 'gtkrc.bak' -exec ${RM} {} + @${REINPLACE_CMD} -e 's|glib/.*\.h>|glib.h>|g' \ ${WRKSRC}/src/animation.c diff --git a/x11-themes/openbox-themes/Makefile b/x11-themes/openbox-themes/Makefile index bf1dc755e56f..7cc681e128fc 100644 --- a/x11-themes/openbox-themes/Makefile +++ b/x11-themes/openbox-themes/Makefile @@ -20,7 +20,7 @@ NO_ARCH= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} post-extract: - @${RM} -rf ${WRKSRC}/debian + @${RM} -r ${WRKSRC}/debian do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/themes diff --git a/x11-themes/sawfish-themes/Makefile b/x11-themes/sawfish-themes/Makefile index 1b5f3ec95377..6bcd9d594349 100644 --- a/x11-themes/sawfish-themes/Makefile +++ b/x11-themes/sawfish-themes/Makefile @@ -26,7 +26,7 @@ DATA_DIRS= 2YearsToNever Anonymous Aquiline BWM Big Blackwindow \ debian gorilla gorillaz mxflat typo post-extract: - ${FIND} ${WRKSRC} -name .xvpics | ${XARGS} ${RM} -rf + ${FIND} ${WRKSRC} -name .xvpics | ${XARGS} ${RM} -r do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/sawfish/themes |