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-clocks | |
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-clocks')
-rw-r--r-- | x11-clocks/asclock-gtk/Makefile | 2 | ||||
-rw-r--r-- | x11-clocks/asclock-xlib/Makefile | 2 | ||||
-rw-r--r-- | x11-clocks/pclock/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/x11-clocks/asclock-gtk/Makefile b/x11-clocks/asclock-gtk/Makefile index 7c80541fbf6b..f235bf011562 100644 --- a/x11-clocks/asclock-gtk/Makefile +++ b/x11-clocks/asclock-gtk/Makefile @@ -38,7 +38,7 @@ SHAPED_THEME_DESC= Shaped theme do-configure: @(cd ${WRKSRC}; \ - ${RM} -rf default_theme; \ + ${RM} -r default_theme; \ ${LN} -s themes/${PORT_OPTIONS:M*_THEME:S/_THEME//:tl} default_theme) .include <bsd.port.mk> diff --git a/x11-clocks/asclock-xlib/Makefile b/x11-clocks/asclock-xlib/Makefile index 697988d8d260..a942909ce5c3 100644 --- a/x11-clocks/asclock-xlib/Makefile +++ b/x11-clocks/asclock-xlib/Makefile @@ -24,7 +24,7 @@ post-patch: pre-configure: @(cd ${WRKSRC}; \ - ${RM} -rf default_theme; \ + ${RM} -r default_theme; \ ${LN} -s themes/Orb default_theme) post-install: diff --git a/x11-clocks/pclock/Makefile b/x11-clocks/pclock/Makefile index 879dbc127404..ef50ce992f11 100644 --- a/x11-clocks/pclock/Makefile +++ b/x11-clocks/pclock/Makefile @@ -19,7 +19,7 @@ MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" OBJS="Main.o Graphics.o" \ LIBDIR="-L${LOCALBASE}/lib ${LDFLAGS}" post-extract: - cd ${WRKSRC} && ${RM} -f getopt* + cd ${WRKSRC} && ${RM} getopt* do-install: ${INSTALL_PROGRAM} ${WRKSRC}/pclock ${STAGEDIR}${PREFIX}/bin |