diff options
author | Rodrigo Osorio <rodrigo@FreeBSD.org> | 2022-11-01 17:27:51 +0000 |
---|---|---|
committer | Rodrigo Osorio <rodrigo@FreeBSD.org> | 2022-11-01 17:31:17 +0000 |
commit | fdb4b123a50e2c7744537529d93d45d931b76012 (patch) | |
tree | 0fb21e5182ee80ab071a83d8a518bcfe36a8a902 | |
parent | 8eed9a44489854ef5d5334f17e2b7245d57ee825 (diff) | |
download | ports-fdb4b123a50e2c7744537529d93d45d931b76012.tar.gz ports-fdb4b123a50e2c7744537529d93d45d931b76012.zip |
net/rsync: Fix typo in options check
Remove duplicate RENAMED option check and add the missing
FLAGS one. This has no impact on default build configuration.
Reported by: Juraj Lutter <otis@FreeBSD.org>
-rw-r--r-- | net/rsync/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rsync/Makefile b/net/rsync/Makefile index 785b0d061f5d..3266ef680a1e 100644 --- a/net/rsync/Makefile +++ b/net/rsync/Makefile @@ -76,7 +76,7 @@ ZLIB_BASE_CONFIGURE_ON= --with-included-zlib=no .include <bsd.port.options.mk> -.if make(makesum) || ${PORT_OPTIONS:MRENAMED} || ${PORT_OPTIONS:MICONV} || ${PORT_OPTIONS:MRENAMED} +.if make(makesum) || ${PORT_OPTIONS:MRENAMED} || ${PORT_OPTIONS:MICONV} || ${PORT_OPTIONS:MFLAGS} DISTFILES+= ${PORTNAME}-patches-${DISTVERSION}${EXTRACT_SUFX} .endif |